From dfc8b7d5a9bc287082bfa4c8e5de42a4baeb3b0a Mon Sep 17 00:00:00 2001 From: Marc Knaup Date: Tue, 5 Feb 2019 17:27:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=200.9.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- build.gradle.kts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 532aa74..890f292 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ You have to add **one** of the following dependencies to your project depending ```kotlin dependencies { // parsing/serialization of basic types and streaming - implementation("com.github.fluidsonic:fluid-json-basic:0.9.11") + implementation("com.github.fluidsonic:fluid-json-basic:0.9.12") // parsing/serialization of any type using encoders and decoders (Java 7) - implementation("com.github.fluidsonic:fluid-json-coding:0.9.11") + implementation("com.github.fluidsonic:fluid-json-coding:0.9.12") // parsing/serialization of any type using encoders and decoders (Java 8 and newer) - implementation("com.github.fluidsonic:fluid-json-coding-jdk8:0.9.11") + implementation("com.github.fluidsonic:fluid-json-coding-jdk8:0.9.12") } ``` @@ -286,7 +286,7 @@ You can use this library with [`JsonFeature`](https://ktor.io/clients/http-clien `build.gradle.kts`: ```kotlin dependencies { - implementation("com.github.fluidsonic:fluid-json-ktor-client:0.9.11") + implementation("com.github.fluidsonic:fluid-json-ktor-client:0.9.12") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 0766011..f91c420 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,7 +9,7 @@ plugins { fluidLibrary { name = "fluid-json" - version = "0.9.11" + version = "0.9.12" }