Skip to content

Commit

Permalink
Bump version to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kobylynskyi committed Sep 20, 2019
1 parent 18aeec0 commit 123ad18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This Gradle plugin is able to generate the following classes based on your Graph
### Plugin Setup

plugins {
id "io.github.kobylynskyi.graphql.codegen" version "1.2.1"
id "io.github.kobylynskyi.graphql.codegen" version "1.2.2"
}

Using [legacy plugin application](https://docs.gradle.org/current/userguide/plugins.html#sec:old_plugin_application):
Expand All @@ -29,7 +29,7 @@ Using [legacy plugin application](https://docs.gradle.org/current/userguide/plug
}
}
dependencies {
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.2.1"
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.2.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion graphql-codegen-gradle-plugin-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id "idea"
id "application"
id "net.ltgt.apt" version "0.20"
id "io.github.kobylynskyi.graphql.codegen" version "1.2.1"
id "io.github.kobylynskyi.graphql.codegen" version "1.2.2"
}

mainClassName = "io.github.kobylynskyi.bikeshop.Application"
Expand Down
4 changes: 2 additions & 2 deletions graphql-codegen-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ apply plugin: "idea"
apply plugin: "maven-publish"

group = "io.github.kobylynskyi"
version = "1.2.1"
version = "1.2.2"
description = "Provides a task for generating Java code based on GraphQL schema"

dependencies {
compile gradleApi()

compile 'io.github.kobylynskyi:graphql-java-codegen:1.2.1'
compile 'io.github.kobylynskyi:graphql-java-codegen:1.2.2'

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1'
Expand Down

0 comments on commit 123ad18

Please sign in to comment.