From 8d86df4b01a5f3dd04ba6d620eb7518486ca4451 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Sun, 5 Jun 2022 23:46:43 -0700 Subject: [PATCH] Revert versionScheme in the project --- project/src/main/scala/Build.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/src/main/scala/Build.scala b/project/src/main/scala/Build.scala index 2a50600f86..a55e5f9a58 100644 --- a/project/src/main/scala/Build.scala +++ b/project/src/main/scala/Build.scala @@ -87,7 +87,9 @@ object Build { crossScalaVersions := Seq("2.12.15", "2.13.8"), scalaVersion := "2.12.15", - versionScheme := Some("early-semver"), // This should help once the build plugins start depending directly on modules + // This was a mistake. We already have early-semver guaratees during CI, but including this in the publishing POM + // ensures that independent 0.x versions are incompatible, even though we know they are. + // versionScheme := Some("early-semver"), // This should help once the build plugins start depending directly on modules scalacOptions ++= Seq( "-Xfatal-warnings",