From 9df35f8628c3e74570ea80cfad35ffd318932c41 Mon Sep 17 00:00:00 2001 From: prateekatknoldus Date: Sun, 16 Jan 2022 22:30:55 +0530 Subject: [PATCH 1/2] defined version scheme --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 563d940..80f7810 100644 --- a/build.sbt +++ b/build.sbt @@ -3,6 +3,7 @@ name := "scala-logging" crossScalaVersions := Seq("3.0.2", "2.11.12", "2.12.15", "2.13.7") scalaVersion := crossScalaVersions.value.head +versionScheme := Some("early-semver") scalacOptions ++= Seq( "-unchecked", "-deprecation", From ea1eeed7ef0c3b1d87263647a116a8909c1044c8 Mon Sep 17 00:00:00 2001 From: prateekatknoldus Date: Sat, 22 Jan 2022 20:18:52 +0530 Subject: [PATCH 2/2] minor change --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 80f7810..39cfcbc 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ name := "scala-logging" crossScalaVersions := Seq("3.0.2", "2.11.12", "2.12.15", "2.13.7") scalaVersion := crossScalaVersions.value.head -versionScheme := Some("early-semver") +ThisBuild / versionScheme := Some("early-semver") scalacOptions ++= Seq( "-unchecked", "-deprecation",