Skip to content

Commit 034ce58

Browse files
committed
added versionign policy
1 parent 61041fa commit 034ce58

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
val dottyVersion = "3.0.0"
33
//val dottyVersion = dottyLatestNightlyBuild.get
44

5-
ThisBuild/version := "2.0.3-SNAPSHOT"
5+
ThisBuild/version := "2.0.3"
6+
ThisBuild/versionScheme := Some("semver-spec")
67

78
val sharedSettings = Seq(
89
organization := "com.github.rssh",
910
scalaVersion := dottyVersion,
1011
name := "scala-gopher",
1112
resolvers += "Local Ivy Repository" at "file://"+Path.userHome.absolutePath+"/.ivy2/local",
12-
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.8.0-SNAPSHOT",
13+
libraryDependencies += "com.github.rssh" %%% "dotty-cps-async" % "0.8.1",
1314
libraryDependencies += "org.scalameta" %%% "munit" % "0.7.26" % Test,
1415
testFrameworks += new TestFramework("munit.Framework")
1516
)

0 commit comments

Comments
 (0)