From e155037351987eca254e469eac041b8fa143f080 Mon Sep 17 00:00:00 2001 From: Brad Baker Date: Mon, 8 Apr 2024 08:46:58 +1000 Subject: [PATCH 1/3] start of a branch to update to 22 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ea31b80..ef4be52 100644 --- a/build.gradle +++ b/build.gradle @@ -41,7 +41,7 @@ repositories { } dependencies { - implementation "com.graphql-java:graphql-java:21.3" + implementation "com.graphql-java:graphql-java:22.0-rc1" testImplementation "org.spockframework:spock-core:2.3-groovy-3.0" testImplementation "org.codehaus.groovy:groovy:3.0.20" From 9bac79a93d802113162b4edad3d0c483e4135464 Mon Sep 17 00:00:00 2001 From: dondonz <13839920+dondonz@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:34:29 +1000 Subject: [PATCH 2/3] Update to 22.0 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ef4be52..da51065 100644 --- a/build.gradle +++ b/build.gradle @@ -41,7 +41,7 @@ repositories { } dependencies { - implementation "com.graphql-java:graphql-java:22.0-rc1" + implementation "com.graphql-java:graphql-java:22.0" testImplementation "org.spockframework:spock-core:2.3-groovy-3.0" testImplementation "org.codehaus.groovy:groovy:3.0.20" From bdccedd3264e59e5c41426e2b5f29a56442c1494 Mon Sep 17 00:00:00 2001 From: dondonz <13839920+dondonz@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:40:39 +1000 Subject: [PATCH 3/3] Update readme --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0885552..cd199f7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Extended Scalars for graphql-java [![Build Status](https://github.com/graphql-java/graphql-java-extended-scalars/actions/workflows/master.yml/badge.svg)](https://github.com/graphql-java/graphql-java-extended-scalars/actions/workflows/master.yml) -[![Latest Release](https://img.shields.io/maven-central/v/com.graphql-java/graphql-java-extended-scalars?versionPrefix=21.)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-java-extended-scalars/) +[![Latest Release](https://img.shields.io/maven-central/v/com.graphql-java/graphql-java-extended-scalars?versionPrefix=22.)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-java-extended-scalars/) [![Latest Snapshot](https://img.shields.io/maven-central/v/com.graphql-java/graphql-java-extended-scalars?label=maven-central%20snapshot)](https://maven-badges.herokuapp.com/maven-central/com.graphql-java/graphql-java-extended-scalars/) [![MIT licensed](https://img.shields.io/badge/license-MIT-green)](https://github.com/graphql-java/graphql-java-extended-scalars/blob/master/LICENSE.md) @@ -23,7 +23,7 @@ You would use custom scalars when you want to describe more meaningful behavior To use this library put the following into your gradle config ```java -implementation 'com.graphql-java:graphql-java-extended-scalars:21.0' +implementation 'com.graphql-java:graphql-java-extended-scalars:22.0' ``` or the following into your Maven config @@ -32,17 +32,18 @@ or the following into your Maven config com.graphql-java graphql-java-extended-scalars - 21.0 + 22.0 ``` > Note: > -> use 21.0 or above for graphql-java 21.x and above +> use 22.0 or above for graphql-java 22.x and above +> +> use 21.0 for graphql-java 21.x > > use 20.2 for graphql-java 20.x > -> use 19.1 for graphql-java 19.x ## How to use extended scalars