@@ -108,7 +108,7 @@ lazy val macros = crossProject(JSPlatform, JVMPlatform, NativePlatform)
108108 .settings(withCompatUnmanagedSources(jsJvmCrossProject = true , includeTestSrcs = false ))
109109 .settings(
110110 name := " enumeratum-macros" ,
111- version := Versions .Macros .head ,
111+ version := Versions .Macros .stable ,
112112 crossScalaVersions := scalaVersionsAll, // eventually move this to aggregateProject once more 2.13 libs are out
113113 libraryDependencies += {
114114 if (scalaBinaryVersion.value == " 3" ) {
@@ -137,7 +137,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
137137 .settings(commonWithPublishSettings)
138138 .settings(
139139 name := " enumeratum" ,
140- version := Versions .Macros .head ,
140+ version := Versions .Macros .stable ,
141141 crossScalaVersions := scalaVersionsAll,
142142 libraryDependencies ++= {
143143 if (useLocalVersion) {
@@ -226,7 +226,7 @@ lazy val enumeratumTest = crossProject(JSPlatform, JVMPlatform, NativePlatform)
226226 .settings(commonWithPublishSettings)
227227 .settings(
228228 name := " enumeratum-test" ,
229- version := Versions .Macros .head ,
229+ version := Versions .Macros .stable ,
230230 crossScalaVersions := scalaVersionsAll,
231231 libraryDependencies += {
232232 " com.beachape" %%% " enumeratum" % Versions .Core .stable
@@ -241,7 +241,7 @@ lazy val enumeratumReactiveMongoBson =
241241 .settings(commonWithPublishSettings)
242242 .settings(testSettings)
243243 .settings(
244- version := Versions .Macros .head ,
244+ version := Versions .Macros .stable ,
245245 crossScalaVersions := scalaVersionsAll,
246246 libraryDependencies += {
247247 " org.reactivemongo" %% " reactivemongo-bson-api" % " 1.1.0-RC12" % Provided
@@ -272,7 +272,7 @@ lazy val enumeratumPlayJson = crossProject(JSPlatform, JVMPlatform)
272272 .jsSettings(jsTestSettings)
273273 .settings(
274274 name := " enumeratum-play-json" ,
275- version := Versions .Macros .head ,
275+ version := Versions .Macros .stable ,
276276 crossScalaVersions := scalaVersionsAll,
277277 libraryDependencies ++= Seq (
278278 " org.playframework" %%% " play-json" % " 3.0.4" ,
@@ -301,7 +301,7 @@ lazy val enumeratumPlay = Project(id = "enumeratum-play", base = file("enumeratu
301301 .settings(commonWithPublishSettings)
302302 .settings(testSettings)
303303 .settings(
304- version := Versions .Macros .head ,
304+ version := Versions .Macros .stable ,
305305 // Play do not support 2.12 (default from common settings)
306306 scalaVersion := scala_2_13Version,
307307 crossScalaVersions := Seq (scala_2_13Version, scala_3Version),
@@ -343,7 +343,7 @@ lazy val enumeratumCirce = crossProject(JSPlatform, JVMPlatform, NativePlatform)
343343 .nativeSettings(nativeTestSettings)
344344 .settings(
345345 name := " enumeratum-circe" ,
346- version := Versions .Macros .head ,
346+ version := Versions .Macros .stable ,
347347 libraryDependencies ++= Seq (
348348 " io.circe" %%% " circe-core" % " 0.14.10" ,
349349 scalaXmlTest
@@ -386,7 +386,7 @@ lazy val enumeratumArgonaut = crossProject(JSPlatform, JVMPlatform)
386386 .jsSettings(jsTestSettings)
387387 .settings(
388388 name := " enumeratum-argonaut" ,
389- version := Versions .Macros .head ,
389+ version := Versions .Macros .stable ,
390390 crossScalaVersions := scalaVersionsAll,
391391 libraryDependencies ++= {
392392 val ver : String = " 6.3.9"
@@ -416,7 +416,7 @@ lazy val enumeratumJson4s =
416416 .settings(commonWithPublishSettings)
417417 .settings(testSettings)
418418 .settings(
419- version := Versions .Macros .head ,
419+ version := Versions .Macros .stable ,
420420 crossScalaVersions := scalaVersionsAll,
421421 libraryDependencies ++= {
422422 val ver = " 4.1.0"
@@ -460,7 +460,7 @@ lazy val enumeratumScalacheck = crossProject(JSPlatform, JVMPlatform, NativePlat
460460 .nativeSettings(nativeTestSettings)
461461 .settings(
462462 name := " enumeratum-scalacheck" ,
463- version := Versions .Macros .head ,
463+ version := Versions .Macros .stable ,
464464 crossScalaVersions := scalaVersionsAll,
465465 libraryDependencies ++= {
466466 val (ver, mod, ver2) = (" 1.18.0" , " scalacheck-1-18" , " 3.2.19.0" )
@@ -516,7 +516,7 @@ lazy val enumeratumQuill =
516516 // .jsSettings(jsTestSettings: _*) TODO re-enable once quill supports Scala.js 1.0 */,
517517 .settings(
518518 name := " enumeratum-quill" ,
519- version := Versions .Macros .head ,
519+ version := Versions .Macros .stable ,
520520 crossScalaVersions := scalaVersionsAll,
521521 libraryDependencies ++= {
522522 val (core, ver) = {
@@ -559,7 +559,7 @@ lazy val enumeratumDoobie =
559559 .settings(testSettings)
560560 .settings(
561561 crossScalaVersions := scalaVersionsAll,
562- version := Versions .Macros .head ,
562+ version := Versions .Macros .stable ,
563563 libraryDependencies += " org.tpolecat" %% " doobie-core" % " 1.0.0-RC11" ,
564564 libraryDependencies += scalaXmlTest,
565565 libraryDependencies ++= {
@@ -577,7 +577,7 @@ lazy val enumeratumSlick =
577577 .settings(commonWithPublishSettings)
578578 .settings(testSettings)
579579 .settings(
580- version := Versions .Macros .head ,
580+ version := Versions .Macros .stable ,
581581 crossScalaVersions := scalaVersionsAll,
582582 libraryDependencies ++= Seq (
583583 (" com.typesafe.slick" %% " slick" % " 3.5.1" ),
@@ -607,7 +607,7 @@ lazy val enumeratumCats = crossProject(JSPlatform, JVMPlatform, NativePlatform)
607607 .nativeSettings(nativeTestSettings)
608608 .settings(
609609 name := " enumeratum-cats" ,
610- version := Versions .Macros .head ,
610+ version := Versions .Macros .stable ,
611611 libraryDependencies += " org.typelevel" %%% " cats-core" % " 2.12.0" ,
612612 libraryDependencies += scalaXmlTest,
613613 libraryDependencies ++= {
0 commit comments