Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 38c87c3

Browse files
committed
Release 0.2.5
1 parent 823d621 commit 38c87c3

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.MD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Detailed documentation can be found in [wiki](https://github.com/pgutkowski/KGra
138138
## Using in your project
139139
**_Please note that this library is still in experimental state and is subject to change._**
140140

141-
KGraphQL is pushed to bintray repository and also linked to JCenter. It requires kotlin compiler version 1.1.x and require kotlin runtime of the same version as a dependency.
141+
KGraphQL is pushed to bintray repository and also linked to JCenter. It requires kotlin compiler version 1.2.x and require kotlin runtime of the same version as a dependency.
142142

143143
### Maven
144144

@@ -165,7 +165,7 @@ And make sure that you use the right Kotlin version:
165165

166166
```
167167
<properties>
168-
<kotlin.version>1.1.4</kotlin.version>
168+
<kotlin.version>1.2.0</kotlin.version>
169169
</properties>
170170
```
171171

@@ -191,7 +191,7 @@ And make sure that you use the right Kotlin version:
191191

192192
```
193193
buildscript {
194-
ext.kotlin_version = '1.1.4'
194+
ext.kotlin_version = '1.2.0'
195195
}
196196
```
197197

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group 'com.github.pgutkowski'
2-
version '0.2.4'
2+
version '0.2.5'
33

44
buildscript {
5-
ext.kotlin_version = '1.1.4'
5+
ext.kotlin_version = '1.2.0'
66

77
repositories {
88
mavenCentral()
@@ -36,10 +36,10 @@ repositories {
3636
dependencies {
3737
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
3838
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
39-
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.16'
39+
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.21'
4040

41-
compile "com.fasterxml.jackson.core:jackson-databind:2.8.7"
42-
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.8.7"
41+
compile "com.fasterxml.jackson.core:jackson-databind:2.9.3"
42+
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.3"
4343

4444
compile "com.github.ben-manes.caffeine:caffeine:1.0.0"
4545

@@ -106,10 +106,10 @@ bintray {
106106
publications = ['MyPublication']
107107

108108
version {
109-
name = '0.2.4'
109+
name = '0.2.5'
110110
desc = 'KGraphQL alpha release'
111111
released = new Date()
112-
vcsTag = '0.2.4'
112+
vcsTag = '0.2.5'
113113
}
114114
}
115115
}

0 commit comments

Comments
 (0)