Skip to content

Commit

Permalink
Stabalize build versions for release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
farmdawgnation committed Aug 25, 2024
1 parent a7b4ec0 commit e40f339
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion json4sjackson/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description :=
"Dispatch module providing json4s support"

libraryDependencies ++= Seq(
"org.json4s" %% "json4s-jackson" % "4.1.0-M6",
"org.json4s" %% "json4s-jackson" % "4.1.0-M5",
"ws.unfiltered" %% "unfiltered-netty-server" % "0.13.0-M2" % "test"
)
2 changes: 1 addition & 1 deletion json4snative/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "dispatch-json4s-native"
description :=
"Dispatch module providing json4s native support"

val json4sVersion = "4.1.0-M6"
val json4sVersion = "4.1.0-M5"

libraryDependencies ++= Seq(
"org.json4s" %% "json4s-core" % json4sVersion,
Expand Down
4 changes: 2 additions & 2 deletions project/common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import sbt._
object Common {
import Keys._

val defaultScalaVersion = "3.4.2"
val defaultScalaVersion = "3.3.3"

val testSettings:Seq[Setting[_]] = Seq(
Test / testOptions += Tests.Cleanup { loader =>
Expand All @@ -16,7 +16,7 @@ object Common {
val settings: Seq[Setting[_]] = Seq(
version := "2.0.0-SNAPSHOT",

crossScalaVersions := Seq("2.13.14", "3.4.2"),
crossScalaVersions := Seq("2.13.14", "3.3.3"),

scalaVersion := defaultScalaVersion,

Expand Down

0 comments on commit e40f339

Please sign in to comment.