Skip to content

Commit

Permalink
3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 11, 2024
1 parent 91261bd commit 51d9435
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions upickleReadme/Readme.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
)
)

@sect("uPickle 3.1.3")
@sect("uPickle 3.1.4")
@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.3" // SBT
ivy"com.lihaoyi::upickle:3.1.3" // Mill
"com.lihaoyi" %% "upickle" % "3.1.4" // SBT
ivy"com.lihaoyi::upickle:3.1.4" // 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.3" // SBT
ivy"com.lihaoyi::upickle::3.1.3" // Mill
"com.lihaoyi" %%% "upickle" % "3.1.4" // SBT
ivy"com.lihaoyi::upickle::3.1.4" // Mill

@sect{Scala Versions}
@p
Expand Down Expand Up @@ -886,6 +886,15 @@
JSON library, and inherits a lot of it's performance from Erik's work.

@sect{Version History}
@sect{3.1.4}
@ul
@li
Add ability to set @code{allowUnknownKeys} to @hl.scala{false} globally or on a per-case-class
basis to raise errors if unknown keys are present @lnk("#548", "https://github.com/com-lihaoyi/upickle/pull/548")
@li
Fix an issue failing to detect case class constructor default values in Scala 3.x
when the case class is generic @lnk("#547", "https://github.com/com-lihaoyi/upickle/pull/547")

@sect{3.1.3}
@ul
@li
Expand Down

0 comments on commit 51d9435

Please sign in to comment.