diff --git a/build.sc b/build.sc index 33d492235..60eff4992 100644 --- a/build.sc +++ b/build.sc @@ -45,7 +45,15 @@ trait CommonPublishModule extends ScalaModule with PublishModule with Mima with CrossScalaModule { outer => def publishVersion = VcsVersion.vcsState().format() - def mimaPreviousVersions = Seq("3.0.0") + def mimaPreviousVersions = Seq( + "3.0.0", + "3.1.0", + "3.1.1", + "3.1.2", + "3.1.3", + "3.1.4", +// "3.1.5", Not sure why this fails, maybe some artifacts were not properly published? + ) def isDotty = crossScalaVersion.startsWith("0") || crossScalaVersion.startsWith("3") def pomSettings = PomSettings( description = artifactName(), diff --git a/upickleReadme/Readme.scalatex b/upickleReadme/Readme.scalatex index c23a5ed1d..3e283481b 100644 --- a/upickleReadme/Readme.scalatex +++ b/upickleReadme/Readme.scalatex @@ -25,7 +25,7 @@ ) ) -@sect("uPickle 3.1.5") +@sect("uPickle 3.2.0") @div(display.flex, alignItems.center, flexDirection.column) @div @a(href := "https://gitter.im/lihaoyi/upickle")( @@ -74,8 +74,8 @@ @sect{Getting Started} @hl.scala - "com.lihaoyi" %% "upickle" % "3.1.5" // SBT - ivy"com.lihaoyi::upickle:3.1.5" // Mill + "com.lihaoyi" %% "upickle" % "3.2.0" // SBT + ivy"com.lihaoyi::upickle:3.2.0" // Mill @p And then you can immediately start writing and reading common Scala @@ -93,8 +93,8 @@ @p For ScalaJS applications, use this dependencies instead: @hl.scala - "com.lihaoyi" %%% "upickle" % "3.1.5" // SBT - ivy"com.lihaoyi::upickle::3.1.5" // Mill + "com.lihaoyi" %%% "upickle" % "3.2.0" // SBT + ivy"com.lihaoyi::upickle::3.2.0" // Mill @sect{Scala Versions} @p @@ -886,7 +886,7 @@ JSON library, and inherits a lot of it's performance from Erik's work. @sect{Version History} - @sect{3.1.5} + @sect{3.2.0} @ul @li Add the @code{sortKeys = true} flag that can be passed to @code{upickle.default.write}