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