From ce24b3c147d139dcf80cb720be2e1b2befe45293 Mon Sep 17 00:00:00 2001 From: JFronny Date: Sat, 21 Jan 2023 14:35:36 +0100 Subject: [PATCH] Update gson, bump version --- README.md | 2 +- build.gradle.kts | 2 +- commons-gson/build.gradle.kts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5980bed..53c38c7 100644 --- a/README.md +++ b/README.md @@ -7,5 +7,5 @@ Common code for my java projects. Uses my common [build scripts](https://git.fro - commons: Common java code without a major theme or external dependencies - [muscript](https://git.frohnmeyer-wds.de/Johannes/java-commons/src/branch/master/muscript): A simple scripting language - commons-slf4j: SLF4J bindings for the logging abstraction in commons. Supports using commons as a backend for slf and slf as a commons backend. -- commons-gson: Shades my fork of gson and provides some utility classes +- commons-gson: Provides some utility classes around my fork of gson - commons-manifold: Some common code using the features of manifold-ext. Mainly extension classes. \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index f5dab00..c956785 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,7 +2,7 @@ plugins { id("commons.library") } -version = "1.0-SNAPSHOT" +version = "1.1-SNAPSHOT" publishing { publications { diff --git a/commons-gson/build.gradle.kts b/commons-gson/build.gradle.kts index 601f8f7..7675af2 100644 --- a/commons-gson/build.gradle.kts +++ b/commons-gson/build.gradle.kts @@ -3,7 +3,7 @@ plugins { } dependencies { - api("io.gitlab.jfronny:gson:2.11.0-SNAPSHOT") + api("io.gitlab.jfronny:gson:2.10.2-SNAPSHOT") implementation(project(":")) testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")