Skip to content

Commit

Permalink
Merge pull request #135 from graphql-java/update-to-22
Browse files Browse the repository at this point in the history
Update to v22
  • Loading branch information
dondonz committed Apr 16, 2024
2 parents f6191ff + bdccedd commit f9f4d57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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
Expand All @@ -32,17 +32,18 @@ or the following into your Maven config
<dependency>
<groupId>com.graphql-java</groupId>
<artifactId>graphql-java-extended-scalars</artifactId>
<version>21.0</version>
<version>22.0</version>
</dependency>
```

> 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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ repositories {
}

dependencies {
implementation "com.graphql-java:graphql-java:21.3"
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"
Expand Down

0 comments on commit f9f4d57

Please sign in to comment.