Skip to content

Commit 0c4f31d

Browse files
committed
Bump to release version 4.1.1
1 parent ec1b88e commit 0c4f31d

File tree

18 files changed

+25
-25
lines changed

18 files changed

+25
-25
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.: 4.1.0*
25+
* **graphql-java-codegen**: *E.g.: 4.1.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 = "4.1.1-SNAPSHOT"
12+
version = "4.1.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 "4.1.0"
21+
id "io.github.kobylynskyi.graphql.codegen" version "4.1.1"
2222
}
2323
```
2424

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

plugins/gradle/example-client-kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
44
plugins {
55
id 'java'
66
id "org.jetbrains.kotlin.jvm" version "1.3.71"
7-
id "io.github.kobylynskyi.graphql.codegen" version "4.1.1-SNAPSHOT"
7+
id "io.github.kobylynskyi.graphql.codegen" version "4.1.1"
88
}
99

1010
group 'io.github.dreamylost'
11-
version '4.1.1-SNAPSHOT'
11+
version '4.1.1'
1212

1313
sourceCompatibility = 1.8
1414

@@ -27,7 +27,7 @@ repositories {
2727

2828

2929
dependencies {
30-
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.1-SNAPSHOT"
30+
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.1"
3131
implementation "javax.validation:validation-api:2.0.1.Final"
3232
implementation "com.squareup.okhttp3:okhttp:4.2.2"
3333
implementation "com.fasterxml.jackson.core:jackson-core:2.12.0"

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 "4.1.1-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "4.1.1"
1111
}
1212

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

2323
// use the latest available version:
2424
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
25-
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.1-SNAPSHOT"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:4.1.1"
2626

2727
implementation "org.apache.httpcomponents:httpclient:4.5.13"
2828
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 "4.1.1-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "4.1.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 = "4.1.1-SNAPSHOT"
20+
version = "4.1.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>4.1.0</version>
24+
<version>4.1.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>4.1.1-SNAPSHOT</version>
7+
<version>4.1.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>4.1.1-SNAPSHOT</version>
7+
<version>4.1.1</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

0 commit comments

Comments
 (0)