Skip to content

Commit de564ae

Browse files
committed
prepare for 3.0.1 release with changed dependency
1 parent 51e112f commit de564ae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
For scala 3.1.1+:
88

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

1111
For scala 3 and 3.1.0:
1212

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

15-
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.
15+
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.
1616

1717
For scala2:
1818

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
val dottyVersion = "3.1.1"
33
//val dottyVersion = dottyLatestNightlyBuild.get
44

5-
ThisBuild/version := "3.0.1-SNAPSHOT"
5+
ThisBuild/version := "3.0.1"
66
ThisBuild/versionScheme := Some("semver-spec")
77

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

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

0 commit comments

Comments
 (0)