Skip to content

Commit fa8836c

Browse files
committed
Setting version to 2.33.1
1 parent c10836e commit fa8836c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Actions Build](https://github.com/plokhotnyuk/jsoniter-scala/workflows/build/badge.svg)](https://github.com/plokhotnyuk/jsoniter-scala/actions)
44
[![Scala Steward](https://img.shields.io/badge/Scala_Steward-helping-brightgreen.svg?style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
55
[![Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/plokhotnyuk/jsoniter-scala?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6-
[![Maven Central](https://img.shields.io/badge/maven--central-2.33.0-blue.svg)](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/)
6+
[![Maven Central](https://img.shields.io/badge/maven--central-2.33.1-blue.svg)](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/)
77

88
Scala macros for compile-time generation of safe and ultra-fast JSON codecs.
99

@@ -246,16 +246,16 @@ list of sbt dependencies:
246246
```sbt
247247
libraryDependencies ++= Seq(
248248
// Use the %%% operator instead of %% for Scala.js and Scala Native
249-
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.33.0",
249+
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.33.1",
250250
// Use the "provided" scope instead when the "compile-internal" scope is not supported
251-
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.33.0" % "compile-internal"
251+
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.33.1" % "compile-internal"
252252
)
253253
```
254254
In the beginning of Scala CLI script use "dep" scope for the core library or "compileOnly.dep" scope for the macros
255255
libary:
256256
```scala
257-
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.0"
258-
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.0"
257+
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.1"
258+
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.1"
259259
```
260260

261261
Derive a codec for the top-level type that need to be parsed or serialized:

jsoniter-scala-examples/example01.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.0"
2-
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.0"
1+
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.1"
2+
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.1"
33

44
import com.github.plokhotnyuk.jsoniter_scala.macros._
55
import com.github.plokhotnyuk.jsoniter_scala.core._

jsoniter-scala-examples/example02.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.0"
1+
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.1"
22

33
import com.github.plokhotnyuk.jsoniter_scala.core._
44

jsoniter-scala-examples/example03.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.0"
2-
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.0"
1+
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.33.1"
2+
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.33.1"
33

44
import com.github.plokhotnyuk.jsoniter_scala.macros._
55
import com.github.plokhotnyuk.jsoniter_scala.core._

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "2.33.1-SNAPSHOT"
1+
ThisBuild / version := "2.33.1"

0 commit comments

Comments
 (0)