Skip to content

Commit 77c33ad

Browse files
committed
Bump to release version 2.2.1
1 parent 83d6e58 commit 77c33ad

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ assignees: ''
2222

2323
## Your Environment and Setup
2424

25-
* **graphql-java-codegen**: *E.g.: 2.2.0*
25+
* **graphql-java-codegen**: *E.g.: 2.2.1*
2626
* **Build tool**: *E.g.: Maven*
2727
* **Java tool**: *E.g.: Oracle 8u241*
2828
* **Mapping Config**: *E.g.:*

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id "org.sonarqube" version "3.0"
1010
}
1111

12-
version = "2.2.1-SNAPSHOT"
12+
version = "2.2.1"
1313
group = "io.github.kobylynskyi"
1414

1515
repositories {

plugins/gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
```groovy
2020
plugins {
21-
id "io.github.kobylynskyi.graphql.codegen" version "2.2.0"
21+
id "io.github.kobylynskyi.graphql.codegen" version "2.2.1"
2222
}
2323
```
2424

@@ -32,7 +32,7 @@ buildscript {
3232
}
3333
}
3434
dependencies {
35-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:2.2.0"
35+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:2.2.1"
3636
}
3737
}
3838

plugins/gradle/example-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
// use the latest available version:
99
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
10-
id "io.github.kobylynskyi.graphql.codegen" version "2.2.1-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "2.2.1"
1111
}
1212

1313
mainClassName = "io.github.kobylynskyi.order.Application"
@@ -21,7 +21,7 @@ dependencies {
2121

2222
// use the latest available version:
2323
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
24-
implementation "io.github.kobylynskyi:graphql-java-codegen:2.2.1-SNAPSHOT"
24+
implementation "io.github.kobylynskyi:graphql-java-codegen:2.2.1"
2525

2626
implementation "org.apache.httpcomponents:httpclient:4.5.12"
2727
implementation "javax.validation:validation-api:2.0.1.Final"

plugins/gradle/example-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
//
77
// use the latest available version:
88
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
9-
id "io.github.kobylynskyi.graphql.codegen" version "2.2.1-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "2.2.1"
1010
}
1111

1212
mainClassName = "io.github.kobylynskyi.product.Application"

plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: "idea"
1717
apply plugin: "maven-publish"
1818

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

2323
dependencies {

plugins/maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<plugin>
2222
<groupId>io.github.kobylynskyi</groupId>
2323
<artifactId>graphql-codegen-maven-plugin</artifactId>
24-
<version>2.2.0</version>
24+
<version>2.2.1</version>
2525
<executions>
2626
<execution>
2727
<goals>

plugins/maven/example-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
7-
<version>2.2.1-SNAPSHOT</version>
7+
<version>2.2.1</version>
88
<name>graphql-codegen-maven-plugin-example-client</name>
99

1010
<build>

plugins/maven/example-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
7-
<version>2.2.1-SNAPSHOT</version>
7+
<version>2.2.1</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

plugins/maven/graphql-java-codegen-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git
3737
</developerConnection>
3838
<url>https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/maven</url>
39-
<tag>v2.2.0</tag>
39+
<tag>v2.2.1</tag>
4040
</scm>
4141

4242
<distributionManagement>
@@ -70,7 +70,7 @@
7070
<version.maven-scm-provider-gitexe>1.11.2</version.maven-scm-provider-gitexe>
7171
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
7272

73-
<version.graphql-java-codegen>2.2.1-SNAPSHOT</version.graphql-java-codegen>
73+
<version.graphql-java-codegen>2.2.1</version.graphql-java-codegen>
7474
</properties>
7575

7676
<dependencies>

0 commit comments

Comments
 (0)