Skip to content

Commit

Permalink
Setting version to 2.30.5
Browse files Browse the repository at this point in the history
  • Loading branch information
plokhotnyuk committed Jul 10, 2024
1 parent 6af4f96 commit e6365ba
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Actions Build](https://github.com/plokhotnyuk/jsoniter-scala/workflows/build/badge.svg)](https://github.com/plokhotnyuk/jsoniter-scala/actions)
[![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)
[![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)
[![Maven Central](https://img.shields.io/badge/maven--central-2.30.4-blue.svg)](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/)
[![Maven Central](https://img.shields.io/badge/maven--central-2.30.5-blue.svg)](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/)

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

Expand Down Expand Up @@ -236,9 +236,9 @@ list of dependencies:
```sbt
libraryDependencies ++= Seq(
// Use the %%% operator instead of %% for Scala.js and Scala Native
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.30.4",
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.30.5",
// Use the "provided" scope instead when the "compile-internal" scope is not supported
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.30.4" % "compile-internal"
"com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.30.5" % "compile-internal"
)
```

Expand Down
4 changes: 2 additions & 2 deletions jsoniter-scala-examples/example01.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.4"
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.30.4"
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.5"
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.30.5"

import com.github.plokhotnyuk.jsoniter_scala.macros._
import com.github.plokhotnyuk.jsoniter_scala.core._
Expand Down
2 changes: 1 addition & 1 deletion jsoniter-scala-examples/example02.sc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.4"
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.5"

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

Expand Down
4 changes: 2 additions & 2 deletions jsoniter-scala-examples/example03.sc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.4"
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.30.4"
//> using dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-core::2.30.5"
//> using compileOnly.dep "com.github.plokhotnyuk.jsoniter-scala::jsoniter-scala-macros::2.30.5"

import com.github.plokhotnyuk.jsoniter_scala.macros._
import com.github.plokhotnyuk.jsoniter_scala.core._
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "2.30.5-SNAPSHOT"
ThisBuild / version := "2.30.5"

0 comments on commit e6365ba

Please sign in to comment.