Skip to content

Commit

Permalink
Release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darkfrog26 committed Aug 6, 2023
1 parent 29d3467 commit 7ec320c
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name := "robobrowser"
organization := "com.outr"
version := "1.6.1-SNAPSHOT"
version := "1.6.1"

val scala213: String = "2.13.11"

val scala3: String = "3.3.0'"
val scala3: String = "3.3.0"

scalaVersion := scala213
crossScalaVersions := Seq(scala213, scala3)
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/outr/robobrowser/RoboBrowser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import scala.util.Try
import fabric._
import fabric.define.DefType
import fabric.io.{JsonFormatter, JsonParser}
import fabric.rw.{Asable, Convertible, RW}
import fabric.rw._
import org.openqa.selenium.devtools.{DevTools, HasDevTools}
import org.openqa.selenium.devtools.v112.network.Network
import org.openqa.selenium.devtools.v112.network.model.{RequestWillBeSent, ResponseReceived}
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/outr/robobrowser/captcha/AntiGate.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.outr.robobrowser.captcha

import cats.effect.IO
import fabric.Json
import fabric.rw.RW
import fabric.rw._
import spice.http.client.{HttpClient, Proxy}
import spice.net._

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/outr/robobrowser/event/KeyEvent.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.outr.robobrowser.event

import fabric.rw.RW
import fabric.rw._

case class KeyEvent(code: String,
key: String,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.outr.robobrowser.event

import fabric.rw.RW
import fabric.rw._

case class PointerEvent(button: Int,
buttons: Int,
Expand Down
1 change: 1 addition & 0 deletions src/test/scala/spec/IntegrationTestSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import com.outr.robobrowser.integration.{IntegrationTestSuite, IntegrationTestsI
import org.scalatest.matchers.should.Matchers
import org.scalatest.wordspec.AnyWordSpec
import profig.Profig
import fabric.rw._

import com.outr.robobrowser.browserstack._

Expand Down
1 change: 1 addition & 0 deletions src/test/scala/spec/RoboBrowserSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import com.outr.robobrowser._
import com.outr.robobrowser.browser.firefox.Firefox
import com.outr.robobrowser.event.{Event, EventManager}
import fabric._
import fabric.rw._

import java.io.File
import org.scalatest.matchers.should.Matchers
Expand Down
2 changes: 1 addition & 1 deletion src/test/scala/util/DeviceGenerator.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package util

import fabric.io.JsonParser
import fabric.rw.{Asable, RW}
import fabric.rw._
import spice.streamer._

import java.io.File
Expand Down

0 comments on commit 7ec320c

Please sign in to comment.