Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kitlangton committed Jul 16, 2022
1 parent 36a0e68 commit 8e6b550
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,17 @@ val boopickleVerison = "1.4.0"
val fansiVersion = "0.4.0"
val laminarVersion = "0.14.2"
val laminextVersion = "0.14.3"
val postgresVersion = "42.3.1"
val postgresVersion = "42.3.6"
val quillVersion = "4.1.0"
val scalaJavaTimeVersion = "2.4.0"
val sttpVersion = "3.6.2+66-21235798-SNAPSHOT"
val zioHttpVersion = "1.0.0.0-RC29+29-a7d5340c-SNAPSHOT"
val sttpVersion = "3.7.0"
val zioHttpVersion = "2.0.0-RC10"
val zioJsonVersion = "0.3.0-RC3"
val zioNioVersion = "2.0.0"
val zioProcessVersion = "0.7.1"
val zioVersion = "2.0.0"
val zioQueryVersion = "0.3.0"

lazy val localZhttp = ProjectRef(file("/Users/kit/code/open-source/zio-http"), "zhttp")

val sharedSettings = Seq(
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
Expand Down Expand Up @@ -114,11 +112,11 @@ lazy val cli = (project in file("cli"))
"-H:IncludeResources='.*'",
),
libraryDependencies ++= Seq(
"dev.zio" %% "zio-process" % zioProcessVersion,
"dev.zio" %% "zio-nio" % zioNioVersion,
"dev.zio" %% "zio-parser" % "0.1.7",
// "io.d11" %% "zhttp" % zioHttpVersion,
"org.jline" % "jline" % "3.20.0",
"dev.zio" %% "zio-process" % zioProcessVersion,
"dev.zio" %% "zio-nio" % zioNioVersion,
"dev.zio" %% "zio-parser" % "0.1.7",
"io.d11" %% "zhttp" % zioHttpVersion,
"org.jline" % "jline" % "3.21.0",
),
resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
Expand All @@ -128,7 +126,7 @@ lazy val cli = (project in file("cli"))
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework"),
)
.settings(sharedSettings)
.dependsOn(cliShared, coreJVM, localZhttp)
.dependsOn(cliShared, coreJVM)

lazy val cliFrontend = project
.in(file("cli-frontend"))
Expand Down

0 comments on commit 8e6b550

Please sign in to comment.