Skip to content

Commit 7e203a0

Browse files
committed
Bump to release version 2.0.0
1 parent 33d25a7 commit 7e203a0

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.: 1.8.1*
25+
* **graphql-java-codegen**: *E.g.: 2.0.0*
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
@@ -8,7 +8,7 @@ plugins {
88
id "maven-publish"
99
}
1010

11-
version = "2.0.0-SNAPSHOT"
11+
version = "2.0.0"
1212
group = "io.github.kobylynskyi"
1313

1414
repositories {

plugins/gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This Gradle plugin is able to generate the following classes based on your Graph
3030

3131
```groovy
3232
plugins {
33-
id "io.github.kobylynskyi.graphql.codegen" version "1.8.1"
33+
id "io.github.kobylynskyi.graphql.codegen" version "2.0.0"
3434
}
3535
```
3636

@@ -44,7 +44,7 @@ buildscript {
4444
}
4545
}
4646
dependencies {
47-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.8.1"
47+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:2.0.0"
4848
}
4949
}
5050

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.0.0-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "2.0.0"
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.0.0-SNAPSHOT"
24+
implementation "io.github.kobylynskyi:graphql-java-codegen:2.0.0"
2525

2626
implementation "org.apache.httpcomponents:httpclient:4.5.12"
2727

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.0.0-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "2.0.0"
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.0.0-SNAPSHOT"
20+
version = "2.0.0"
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
@@ -33,7 +33,7 @@ This Maven plugin is able to generate the following classes based on your GraphQ
3333
<plugin>
3434
<groupId>io.github.kobylynskyi</groupId>
3535
<artifactId>graphql-codegen-maven-plugin</artifactId>
36-
<version>1.8.1</version>
36+
<version>2.0.0</version>
3737
<executions>
3838
<execution>
3939
<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.0.0-SNAPSHOT</version>
7+
<version>2.0.0</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.0.0-SNAPSHOT</version>
7+
<version>2.0.0</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>v1.8.1</tag>
39+
<tag>v2.0.0</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.0.0-SNAPSHOT</version.graphql-java-codegen>
73+
<version.graphql-java-codegen>2.0.0</version.graphql-java-codegen>
7474
</properties>
7575

7676
<dependencies>

0 commit comments

Comments
 (0)