Skip to content

Commit a22fe9c

Browse files
committed
Bump to release version 3.1.1
1 parent 92e276b commit a22fe9c

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
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.: 3.1.0*
25+
* **graphql-java-codegen**: *E.g.: 3.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 = "3.1.1-SNAPSHOT"
12+
version = "3.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 "3.1.0"
21+
id "io.github.kobylynskyi.graphql.codegen" version "3.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:3.1.0"
35+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:3.1.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 "3.1.1-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "3.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:3.1.1-SNAPSHOT"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.1"
2626

2727
implementation "org.apache.httpcomponents:httpclient:4.5.12"
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 "3.1.1-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "3.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 = "3.1.1-SNAPSHOT"
20+
version = "3.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>3.1.0</version>
24+
<version>3.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>3.1.1-SNAPSHOT</version>
7+
<version>3.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>3.1.1-SNAPSHOT</version>
7+
<version>3.1.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>v3.1.0</tag>
39+
<tag>v3.1.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>3.1.1-SNAPSHOT</version.graphql-java-codegen>
73+
<version.graphql-java-codegen>3.1.1</version.graphql-java-codegen>
7474
</properties>
7575

7676
<dependencies>

plugins/sbt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enablePlugins(GraphQLCodegenPlugin)
3333
GraphQLCodegenPluginDependencies
3434

3535
//default graphqlJavaCodegen is release
36-
graphqlJavaCodegenVersion := Some("3.1.0")
36+
graphqlJavaCodegenVersion := Some("3.1.1")
3737
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
3838
modelPackageName := Some("io.github.dreamylost.model")
3939
apiPackageName := Some("io.github.dreamylost.api")

plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ object Dependencies {
1313
object Versions {
1414
lazy val scala212 = "2.12.12"
1515
lazy val scala211 = "2.11.12"
16-
val codegen = "3.1.1-SNAPSHOT"
16+
val codegen = "3.1.1"
1717
}
1818

1919
import Versions._

plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class GraphQLCodegenPlugin(configuration: Configuration, private[codegen] val co
2929

3030
//override this by graphqlJavaCodegenVersion and javaxValidationApiVersion
3131
private val jValidation = "2.0.1.Final"
32-
private val codegen = "3.1.1-SNAPSHOT"
32+
private val codegen = "3.1.1"
3333

3434
object GlobalImport extends GraphQLCodegenKeys {
3535

plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ libraryDependencies ++= Seq(
1717

1818
enablePlugins(GraphQLCodegenPlugin)
1919

20-
graphqlJavaCodegenVersion := Some("3.1.1-SNAPSHOT")
20+
graphqlJavaCodegenVersion := Some("3.1.1")
2121

2222
GraphQLCodegenPluginDependencies
2323

2424
//default graphqlJavaCodegen is release
25-
//graphqlJavaCodegenVersion := Some("3.1.1-SNAPSHOT")
25+
//graphqlJavaCodegenVersion := Some("3.1.1")
2626
graphqlSchemaPaths := List("src/main/resources/schema.graphqls")
2727
modelPackageName := Some("io.github.dreamylost.model")
2828
apiPackageName := Some("io.github.dreamylost.api")
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.1-SNAPSHOT")
1+
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.1")

plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sys.props.get("plugin.version").orElse(Some("3.1.1-SNAPSHOT")) match {
1+
sys.props.get("plugin.version").orElse(Some("3.1.1")) match {
22
case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x)
33
case _ => sys.error("""|The system property 'plugin.version' is not defined.
44
|Specify this property using the scriptedLaunchOpts -D.""".stripMargin)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "3.1.1-SNAPSHOT"
1+
version in ThisBuild := "3.1.1"

0 commit comments

Comments
 (0)