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

Upgrade airspec to 24.1.2 #3363

Merged
merged 1 commit into from
Jan 31, 2024
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
1 change: 0 additions & 1 deletion AIRSPEC_VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion 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", IO.read(file("AIRSPEC_VERSION")).trim)
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.1.2")
val SCALACHECK_VERSION = "1.17.0"
val MSGPACK_VERSION = "0.9.8"
val SCALA_PARSER_COMBINATOR_VERSION = "2.3.0"
Expand Down
4 changes: 2 additions & 2 deletions sbt-airframe/build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Reload build.sbt on changes
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "23.11.2")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", IO.read(file("../AIRSPEC_VERSION")).trim)
val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "24.1.2")
val AIRSPEC_VERSION = sys.env.getOrElse("AIRSPEC_VERSION", "24.1.2")
val SCALA_2_12 = "2.12.18"

ThisBuild / organization := "org.wvlet.airframe"
Expand Down
Loading