Skip to content

Commit

Permalink
3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 16, 2023
1 parent 1e089f3 commit dae7421
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 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.2")
@sect("uPickle 3.1.3")
@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.2" // SBT
ivy"com.lihaoyi::upickle:3.1.2" // Mill
"com.lihaoyi" %% "upickle" % "3.1.3" // SBT
ivy"com.lihaoyi::upickle:3.1.3" // 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.2" // SBT
ivy"com.lihaoyi::upickle::3.1.2" // Mill
"com.lihaoyi" %%% "upickle" % "3.1.3" // SBT
ivy"com.lihaoyi::upickle::3.1.3" // Mill

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

@sect{Version History}
@sect{3.1.3}
@ul
@li
Fix reading of numbers as strings, e.g.
@hl.scala{upickle.default.read[Seq[String]]("[12345678901234567890]") ==> Seq("12345678901234567890")},
for scenarios where you want to read JSON numbers "as is", preserving the
exact string representation, without rounding, truncation, or overflow.
@sect{3.1.2}
@ul
@li
Expand Down

0 comments on commit dae7421

Please sign in to comment.