Skip to content

Commit

Permalink
prepare for 3.0.1 release with changed dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
rssh committed Jan 25, 2022
1 parent 51e112f commit de564ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

For scala 3.1.1+:

libraryDependencies += "com.github.rssh" %% "scala-gopher" % "3.0.0"
libraryDependencies += "com.github.rssh" %% "scala-gopher" % "3.0.1"

For scala 3 and 3.1.0:

libraryDependencies += "com.github.rssh" %% "scala-gopher" % "2.1.0"

Note, that 3.0.0 have no new functionality agains 2.1.0 but need to be a next major release because of binary incompability caused by difference between dotty-cps-async-0.9.5 and 0.9.6.
Note, that 3.0.x have no new functionality agains 2.1.0 but need to be a next major release because of binary incompability caused by difference between dotty-cps-async-0.9.5 and 0.9.7.

For scala2:

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
val dottyVersion = "3.1.1"
//val dottyVersion = dottyLatestNightlyBuild.get

ThisBuild/version := "3.0.1-SNAPSHOT"
ThisBuild/version := "3.0.1"
ThisBuild/versionScheme := Some("semver-spec")

val sharedSettings = Seq(
organization := "com.github.rssh",
scalaVersion := dottyVersion,
name := "scala-gopher",
resolvers += "Local Ivy Repository" at "file://"+Path.userHome.absolutePath+"/.ivy2/local",
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.9.6",
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.9.7",
libraryDependencies += "org.scalameta" %%% "munit" % "0.7.29" % Test,
)

Expand Down Expand Up @@ -45,7 +45,7 @@ lazy val gopher = crossProject(JSPlatform, JVMPlatform)
Compile / doc / scalacOptions := Seq("-groups",
"-source-links:shared=github://rssh/scala-gopher/master#shared",
"-source-links:jvm=github://rssh/scala-gopher/master#jvm"),
mimaPreviousArtifacts := Set() //Set( "com.github.rssh" %% "scala-gopher" % "2.1.0")
mimaPreviousArtifacts := Set( "com.github.rssh" %% "scala-gopher" % "3.0.0" )
).jsSettings(
libraryDependencies += ("org.scala-js" %%% "scalajs-java-logging" % "1.0.0").cross(CrossVersion.for3Use2_13),
// TODO: switch to ModuleES ?
Expand Down

0 comments on commit de564ae

Please sign in to comment.