Skip to content

Commit

Permalink
3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Feb 16, 2024
1 parent 8c6e991 commit 153efbd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
12 changes: 6 additions & 6 deletions upickleReadme/Readme.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -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")(
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit 153efbd

Please sign in to comment.