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

Commit

Permalink
Merge pull request #31 from NikkyAI/0.3.0-ALPHA
Browse files Browse the repository at this point in the history
Use stable coroutines
  • Loading branch information
pgutkowski authored Oct 20, 2018
2 parents 299eed1 + c3b4544 commit e2b0c69
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group 'com.github.pgutkowski'
version '0.3.0-alpha'
version '0.3.0-beta'

buildscript {
ext.kotlin_version = '1.3-M2'
ext.kotlin_version = '1.3.0-rc-116'

repositories {
mavenCentral()
Expand Down Expand Up @@ -42,7 +42,7 @@ repositories {
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.25.3-eap13'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.2-eap13'

compile "com.fasterxml.jackson.core:jackson-databind:2.9.3"
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.3"
Expand Down Expand Up @@ -116,10 +116,10 @@ bintray {
publications = ['MyPublication']

version {
name = '0.3.0-alpha'
desc = 'KGraphQL alpha release'
name = '0.3.0-beta'
desc = 'KGraphQL beta release'
released = new Date()
vcsTag = '0.3.0-alpha'
vcsTag = '0.3.0-beta'
}
}
}
Expand Down

0 comments on commit e2b0c69

Please sign in to comment.