Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit a3b5d1d

Browse files
committed
Updated version number and readme
1 parent 61e54d4 commit a3b5d1d

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

README.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2121

2222

23-
# Intro
23+
# Documentation
24+
25+
See our new [Documentation](https://www.graphql-java-kickstart.com/spring-boot/).
2426

2527
Repository contains:
2628

@@ -42,13 +44,16 @@ repositories {
4244
}
4345
4446
dependencies {
45-
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.1'
47+
compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:5.2'
4648
4749
// to embed GraphiQL tool
48-
compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.1'
50+
compile 'com.graphql-java-kickstart:graphiql-spring-boot-starter:5.2'
4951
5052
// to embed Voyager tool
51-
compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.1'
53+
compile 'com.graphql-java-kickstart:voyager-spring-boot-starter:5.2'
54+
55+
// testing facilities
56+
testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:5.2'
5257
}
5358
```
5459

@@ -57,22 +62,31 @@ Maven:
5762
<dependency>
5863
<groupId>com.graphql-java-kickstart</groupId>
5964
<artifactId>graphql-spring-boot-starter</artifactId>
60-
<version>5.1</version>
65+
<version>5.2</version>
6166
</dependency>
6267

6368
<!-- to embed GraphiQL tool -->
6469
<dependency>
6570
<groupId>com.graphql-java-kickstart</groupId>
6671
<artifactId>graphiql-spring-boot-starter</artifactId>
67-
<version>5.1</version>
72+
<version>5.2</version>
6873
</dependency>
6974

7075
<!-- to embed Voyager tool -->
7176
<dependency>
7277
<groupId>com.graphql-java-kickstart</groupId>
7378
<artifactId>voyager-spring-boot-starter</artifactId>
74-
<version>5.1</version>
79+
<version>5.2</version>
7580
</dependency>
81+
82+
<!-- testing facilities -->
83+
<dependency>
84+
<groupId>com.graphql-java-kickstart</groupId>
85+
<artifactId>graphql-spring-boot-starter-test</artifactId>
86+
<version>5.2</version>
87+
<scope>test</scope>
88+
</dependency>
89+
7690
```
7791

7892
New releases will be available faster in the JCenter repository than in Maven Central. Add the following to use for Maven

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818
#
1919

20-
version = 5.2
20+
version = 5.2.1-SNAPSHOT
2121
PROJECT_GROUP = com.graphql-java-kickstart
2222
PROJECT_NAME = graphql-spring-boot
2323
PROJECT_DESC = GraphQL Spring Framework Boot

0 commit comments

Comments
 (0)