Skip to content

Commit e2a8575

Browse files
committed
Bump to release version 1.7.4
1 parent dd288c4 commit e2a8575

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
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.7.3*
25+
* **graphql-java-codegen**: *E.g.: 1.7.4*
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 = "1.7.4-SNAPSHOT"
11+
version = "1.7.4"
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
@@ -21,7 +21,7 @@ This Gradle plugin is able to generate the following classes based on your Graph
2121

2222
```groovy
2323
plugins {
24-
id "io.github.kobylynskyi.graphql.codegen" version "1.7.3"
24+
id "io.github.kobylynskyi.graphql.codegen" version "1.7.4"
2525
}
2626
```
2727

@@ -35,7 +35,7 @@ buildscript {
3535
}
3636
}
3737
dependencies {
38-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.7.3"
38+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.7.4"
3939
}
4040
}
4141

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 "1.7.4-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "1.7.4"
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:1.7.4-SNAPSHOT"
24+
implementation "io.github.kobylynskyi:graphql-java-codegen:1.7.4"
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 "1.7.4-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "1.7.4"
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 = "1.7.4-SNAPSHOT"
20+
version = "1.7.4"
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
@@ -26,7 +26,7 @@ This Maven plugin is able to generate the following classes based on your GraphQ
2626
<plugin>
2727
<groupId>io.github.kobylynskyi</groupId>
2828
<artifactId>graphql-codegen-maven-plugin</artifactId>
29-
<version>1.7.3</version>
29+
<version>1.7.4</version>
3030
<executions>
3131
<execution>
3232
<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>1.7.4-SNAPSHOT</version>
7+
<version>1.7.4</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>1.7.4-SNAPSHOT</version>
7+
<version>1.7.4</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.7.2</tag>
39+
<tag>v1.7.4</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>1.7.4-SNAPSHOT</version.graphql-java-codegen>
73+
<version.graphql-java-codegen>1.7.4</version.graphql-java-codegen>
7474
</properties>
7575

7676
<dependencies>

0 commit comments

Comments
 (0)