Skip to content

Commit

Permalink
bump series
Browse files Browse the repository at this point in the history
  • Loading branch information
hamnis committed Jul 30, 2024
1 parent dac23e3 commit b0ef57a
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ThisBuild / tlBaseVersion := "0.4"
ThisBuild / description := "Yet another Typesafe Config decoder"
ThisBuild / tlBaseVersion := "0.5"
ThisBuild / description := "Circe Golden Testing"
ThisBuild / circeRootOfCodeCoverage := None
ThisBuild / startYear := Some(2016)

Expand Down Expand Up @@ -38,33 +38,31 @@ lazy val golden = crossProject(JVMPlatform)
)
},
Test / classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat,
tlVersionIntroduced := Map("2.13" -> "0.14.0", "2.12" -> "0.4.0", "3" -> "0.4.1")
tlVersionIntroduced := List("2.13", "2.12", "3").map(_ -> "0.5.0").toMap
)

lazy val example1 = crossProject(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("examples/example-1"))
.settings(
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"org.scalacheck" %% "scalacheck" % scalacheckVersion,
"org.typelevel" %%% "discipline-scalatest" % disciplineScalatestVersion % Test
)
)
.enablePlugins(NoPublishPlugin)
.dependsOn(golden % Test)

ThisBuild / developers := List(
Developer(
tlGitHubDev(
"travisbrown",
"Travis Brown",
"[email protected]",
url("https://twitter.com/travisbrown")
"Travis Brown"
),
Developer(
tlGitHubDev(
"zarthross",
"Darren Gibson",
"[email protected]",
url("https://twitter.com/zarthross")
"Darren Gibson"
),
tlGitHubDev(
"hamnis",
"Erlend Hamnaberg"
)
)

0 comments on commit b0ef57a

Please sign in to comment.