Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update airframe-codec, airframe-control, ... to 23.5.5 #2978

Merged
merged 1 commit into from
May 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ val targetScalaVersions = SCALA_3 :: uptoScala2
// Add this for using snapshot versions
ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.3")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.5")
val SCALACHECK_VERSION = "1.17.0"
val MSGPACK_VERSION = "0.9.3"
val SCALA_PARSER_COMBINATOR_VERSION = "2.3.0"
Expand All @@ -26,7 +26,7 @@ val JAVAX_ANNOTATION_API_VERSION = "1.3.2"
val PARQUET_VERSION = "1.13.1"
val SNAKE_YAML_VERSION = "1.33"

val AIRFRAME_BINARY_COMPAT_VERSION = "23.5.3"
val AIRFRAME_BINARY_COMPAT_VERSION = "23.5.5"

// A short cut for publishing snapshots to Sonatype
addCommandAlias(
Expand Down
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

// For integration testing
val SBT_AIRFRAME_VERSION = sys.env.getOrElse("SBT_AIRFRAME_VERSION", "23.5.3")
val SBT_AIRFRAME_VERSION = sys.env.getOrElse("SBT_AIRFRAME_VERSION", "23.5.5")
addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % SBT_AIRFRAME_VERSION)

addDependencyTreePlugin
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Reload build.sbt on changes
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "23.5.3")
val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "23.5.5")
val AIRSPEC_VERSION = "23.4.8"
val SCALA_2_12 = "2.12.17"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

ThisBuild / scalaVersion := "2.12.17"

val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.3")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.5")

val buildSettings: Seq[Def.Setting[_]] = Seq(
testFrameworks += new TestFramework("wvlet.airspec.Framework"),
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/src/sbt-test/sbt-airframe/rpc-netty/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-parse

ThisBuild / resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.3")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "23.5.5")

val buildSettings: Seq[Def.Setting[_]] = Seq(
testFrameworks += new TestFramework("wvlet.airspec.Framework"),
Expand Down