Skip to content

Commit 18aeec0

Browse files
committed
Bump version to 1.2.1
1 parent 62c961e commit 18aeec0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This Gradle plugin is able to generate the following classes based on your Graph
1717
### Plugin Setup
1818

1919
plugins {
20-
id "io.github.kobylynskyi.graphql.codegen" version "1.2"
20+
id "io.github.kobylynskyi.graphql.codegen" version "1.2.1"
2121
}
2222

2323
Using [legacy plugin application](https://docs.gradle.org/current/userguide/plugins.html#sec:old_plugin_application):
@@ -29,7 +29,7 @@ Using [legacy plugin application](https://docs.gradle.org/current/userguide/plug
2929
}
3030
}
3131
dependencies {
32-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.2"
32+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.2.1"
3333
}
3434
}
3535

graphql-codegen-gradle-plugin-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "idea"
44
id "application"
55
id "net.ltgt.apt" version "0.20"
6-
id "io.github.kobylynskyi.graphql.codegen" version "1.2"
6+
id "io.github.kobylynskyi.graphql.codegen" version "1.2.1"
77
}
88

99
mainClassName = "io.github.kobylynskyi.bikeshop.Application"

graphql-codegen-gradle-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ apply plugin: "idea"
1717
apply plugin: "maven-publish"
1818

1919
group = "io.github.kobylynskyi"
20-
version = "1.2"
20+
version = "1.2.1"
2121
description = "Provides a task for generating Java code based on GraphQL schema"
2222

2323
dependencies {
2424
compile gradleApi()
2525

26-
compile 'io.github.kobylynskyi:graphql-java-codegen:1.2'
26+
compile 'io.github.kobylynskyi:graphql-java-codegen:1.2.1'
2727

2828
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.1'
2929
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.1'

0 commit comments

Comments
 (0)