|
4 | 4 | [](https://github.com/plokhotnyuk/jsoniter-scala/actions)
|
5 | 5 | [](https://scala-steward.org)
|
6 | 6 | [](https://gitter.im/plokhotnyuk/jsoniter-scala?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
7 |
| -[](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/) |
| 7 | +[](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/) |
8 | 8 |
|
9 | 9 | Scala macros for compile-time generation of safe and ultra-fast JSON codecs.
|
10 | 10 |
|
@@ -249,16 +249,16 @@ list of sbt dependencies:
|
249 | 249 | ```sbt
|
250 | 250 | libraryDependencies ++= Seq(
|
251 | 251 | // Use the %%% operator instead of %% for Scala.js and Scala Native
|
252 |
| - "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.35.0", |
| 252 | + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.35.1", |
253 | 253 | // Use the "provided" scope instead when the "compile-internal" scope is not supported
|
254 |
| - "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.35.0" % "compile-internal" |
| 254 | + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.35.1" % "compile-internal" |
255 | 255 | )
|
256 | 256 | ```
|
257 | 257 | In the beginning of Scala CLI script use "dep" scope for the core library or "compileOnly.dep" scope for the macros
|
258 | 258 | libary:
|
259 | 259 | ```scala
|
260 |
| -//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.35.0" |
261 |
| -//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.35.0" |
| 260 | +//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.35.1" |
| 261 | +//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.35.1" |
262 | 262 | ```
|
263 | 263 |
|
264 | 264 | Derive a codec for the top-level type that need to be parsed or serialized:
|
|
0 commit comments