From 0ac002a3770e254255264dc34b139e3c3419fabb Mon Sep 17 00:00:00 2001 From: Andriy Plokhotnyuk Date: Wed, 8 Feb 2023 15:54:02 +0100 Subject: [PATCH] Setting version to 2.20.7 --- README.md | 6 +++--- jsoniter-scala-examples/build.sbt | 4 ++-- version.sbt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 80a7eb2d6..8a04a90e7 100644 --- a/README.md +++ b/README.md @@ -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.20.6-blue.svg)](https://repo1.maven.org/maven2/com/github/plokhotnyuk/jsoniter-scala/) +[![Maven Central](https://img.shields.io/badge/maven--central-2.20.7-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. @@ -220,9 +220,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.20.6", + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-core" % "2.20.7", // Use the "provided" scope instead when the "compile-internal" scope is not supported - "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.20.6" % "compile-internal" + "com.github.plokhotnyuk.jsoniter-scala" %% "jsoniter-scala-macros" % "2.20.7" % "compile-internal" ) ``` diff --git a/jsoniter-scala-examples/build.sbt b/jsoniter-scala-examples/build.sbt index 7b27f8d55..bbd041328 100644 --- a/jsoniter-scala-examples/build.sbt +++ b/jsoniter-scala-examples/build.sbt @@ -13,9 +13,9 @@ val `jsoniter-scala-examples` = crossProject(JVMPlatform, NativePlatform) assembly / mainClass := Some("com.github.plokhotnyuk.jsoniter_scala.examples.Example01"), libraryDependencySchemes += "com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-core" % "always", libraryDependencies ++= Seq( - "com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-core" % "2.20.6", + "com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-core" % "2.20.7", // Use the "provided" scope instead when the "compile-internal" scope is not supported - "com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-macros" % "2.20.6" % "compile-internal" + "com.github.plokhotnyuk.jsoniter-scala" %%% "jsoniter-scala-macros" % "2.20.7" % "compile-internal" ) ) diff --git a/version.sbt b/version.sbt index 58051f97d..f9dd9f803 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "2.20.7-SNAPSHOT" +ThisBuild / version := "2.20.7"