From 0204e971a72740b5005dc566d6f7bfa3a198ca3e Mon Sep 17 00:00:00 2001 From: Bogdan Kobylynskyi <92bogdan@gmail.com> Date: Fri, 4 Sep 2020 07:20:27 -0500 Subject: [PATCH] Bump to release version 3.1.0 --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- build.gradle | 2 +- plugins/gradle/README.md | 4 ++-- plugins/gradle/example-client/build.gradle | 4 ++-- plugins/gradle/example-server/build.gradle | 2 +- .../gradle/graphql-java-codegen-gradle-plugin/build.gradle | 2 +- plugins/maven/README.md | 2 +- plugins/maven/example-client/pom.xml | 2 +- plugins/maven/example-server/pom.xml | 2 +- plugins/maven/graphql-java-codegen-maven-plugin/pom.xml | 6 +++--- plugins/sbt/README.md | 2 +- .../project/Dependencies.scala | 2 +- .../dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala | 2 +- .../graphql-codegen-sbt-plugin/example-client/build.sbt | 4 ++-- .../example-client/project/plugins.sbt | 2 +- .../graphql-codegen-sbt-plugin/simple/project/plugins.sbt | 2 +- plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt | 2 +- 17 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e0493c79..effa8ca7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -22,7 +22,7 @@ assignees: '' ## Your Environment and Setup -* **graphql-java-codegen**: *E.g.: 3.0.0* +* **graphql-java-codegen**: *E.g.: 3.1.0* * **Build tool**: *E.g.: Maven* * **Java tool**: *E.g.: Oracle 8u241* * **Mapping Config**: *E.g.:* diff --git a/build.gradle b/build.gradle index 436d5dbc..e81ce9a3 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { id "org.sonarqube" version "3.0" } -version = "3.0.1-SNAPSHOT" +version = "3.1.0" group = "io.github.kobylynskyi" repositories { diff --git a/plugins/gradle/README.md b/plugins/gradle/README.md index 63e96596..6da771a8 100644 --- a/plugins/gradle/README.md +++ b/plugins/gradle/README.md @@ -18,7 +18,7 @@ ```groovy plugins { - id "io.github.kobylynskyi.graphql.codegen" version "3.0.0" + id "io.github.kobylynskyi.graphql.codegen" version "3.1.0" } ``` @@ -32,7 +32,7 @@ buildscript { } } dependencies { - classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:3.0.0" + classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:3.1.0" } } diff --git a/plugins/gradle/example-client/build.gradle b/plugins/gradle/example-client/build.gradle index 1122f3c6..54d992d4 100644 --- a/plugins/gradle/example-client/build.gradle +++ b/plugins/gradle/example-client/build.gradle @@ -7,7 +7,7 @@ plugins { // use the latest available version: // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen - id "io.github.kobylynskyi.graphql.codegen" version "3.0.1-SNAPSHOT" + id "io.github.kobylynskyi.graphql.codegen" version "3.1.0" } mainClassName = "io.github.kobylynskyi.order.Application" @@ -22,7 +22,7 @@ dependencies { // use the latest available version: // https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen - implementation "io.github.kobylynskyi:graphql-java-codegen:3.0.1-SNAPSHOT" + implementation "io.github.kobylynskyi:graphql-java-codegen:3.1.0" implementation "org.apache.httpcomponents:httpclient:4.5.12" implementation "javax.validation:validation-api:2.0.1.Final" diff --git a/plugins/gradle/example-server/build.gradle b/plugins/gradle/example-server/build.gradle index 642d144a..6220ecd3 100644 --- a/plugins/gradle/example-server/build.gradle +++ b/plugins/gradle/example-server/build.gradle @@ -6,7 +6,7 @@ plugins { // // use the latest available version: // https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen - id "io.github.kobylynskyi.graphql.codegen" version "3.0.1-SNAPSHOT" + id "io.github.kobylynskyi.graphql.codegen" version "3.1.0" } mainClassName = "io.github.kobylynskyi.product.Application" diff --git a/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle b/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle index e23b26e1..c8a604e5 100644 --- a/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle +++ b/plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle @@ -17,7 +17,7 @@ apply plugin: "idea" apply plugin: "maven-publish" group = "io.github.kobylynskyi" -version = "3.0.1-SNAPSHOT" +version = "3.1.0" description = "Provides a task for generating Java code based on GraphQL schema" dependencies { diff --git a/plugins/maven/README.md b/plugins/maven/README.md index c1d7aaf2..9a757ddf 100644 --- a/plugins/maven/README.md +++ b/plugins/maven/README.md @@ -21,7 +21,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin - 3.0.0 + 3.1.0 diff --git a/plugins/maven/example-client/pom.xml b/plugins/maven/example-client/pom.xml index cb5ac7dd..f81e9b63 100644 --- a/plugins/maven/example-client/pom.xml +++ b/plugins/maven/example-client/pom.xml @@ -4,7 +4,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin-example-client - 3.0.1-SNAPSHOT + 3.1.0 graphql-codegen-maven-plugin-example-client diff --git a/plugins/maven/example-server/pom.xml b/plugins/maven/example-server/pom.xml index 86c93edf..11ace83e 100644 --- a/plugins/maven/example-server/pom.xml +++ b/plugins/maven/example-server/pom.xml @@ -4,7 +4,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin-example-server - 3.0.1-SNAPSHOT + 3.1.0 graphql-codegen-maven-plugin-example-server diff --git a/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml b/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml index 9d490c36..4a8d59dd 100644 --- a/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml +++ b/plugins/maven/graphql-java-codegen-maven-plugin/pom.xml @@ -4,7 +4,7 @@ io.github.kobylynskyi graphql-codegen-maven-plugin maven-plugin - 3.0.1-SNAPSHOT + 3.1.0-SNAPSHOT graphql-codegen-maven-plugin Provides a goal for generating Java code based on GraphQL schema @@ -36,7 +36,7 @@ scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/maven - v3.0.0 + v3.1.0 @@ -70,7 +70,7 @@ 1.11.2 1.6 - 3.0.1-SNAPSHOT + 3.1.0 diff --git a/plugins/sbt/README.md b/plugins/sbt/README.md index 645b7477..66195c35 100644 --- a/plugins/sbt/README.md +++ b/plugins/sbt/README.md @@ -33,7 +33,7 @@ enablePlugins(GraphQLCodegenPlugin) GraphQLCodegenPluginDependencies //default graphqlJavaCodegen is release -graphqlJavaCodegenVersion := Some("3.0.0") +graphqlJavaCodegenVersion := Some("3.1.0") graphqlSchemaPaths := List("src/main/resources/schema.graphqls") modelPackageName := Some("io.github.dreamylost.model") apiPackageName := Some("io.github.dreamylost.api") diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala b/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala index 3a894b52..2967c96b 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/project/Dependencies.scala @@ -13,7 +13,7 @@ object Dependencies { object Versions { lazy val scala212 = "2.12.12" lazy val scala211 = "2.11.12" - val codegen = "3.0.1-SNAPSHOT" + val codegen = "3.1.0" } import Versions._ diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala index 20eafd99..27b81432 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/main/scala/io/github/dreamylost/graphql/codegen/GraphQLCodegenPlugin.scala @@ -29,7 +29,7 @@ class GraphQLCodegenPlugin(configuration: Configuration, private[codegen] val co //override this by graphqlJavaCodegenVersion and javaxValidationApiVersion private val jValidation = "2.0.1.Final" - private val codegen = "3.0.1-SNAPSHOT" + private val codegen = "3.1.0" object GlobalImport extends GraphQLCodegenKeys { diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt index 7a3a2334..9f3c0f6e 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/build.sbt @@ -17,12 +17,12 @@ libraryDependencies ++= Seq( enablePlugins(GraphQLCodegenPlugin) -graphqlJavaCodegenVersion := Some("3.0.1-SNAPSHOT") +graphqlJavaCodegenVersion := Some("3.1.0") GraphQLCodegenPluginDependencies //default graphqlJavaCodegen is release -//graphqlJavaCodegenVersion := Some("3.0.0") +//graphqlJavaCodegenVersion := Some("3.1.0") graphqlSchemaPaths := List("src/main/resources/schema.graphqls") modelPackageName := Some("io.github.dreamylost.model") apiPackageName := Some("io.github.dreamylost.api") diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt index 5c623e90..4f7545ec 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/example-client/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.0.1-SNAPSHOT") +addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "3.1.0") diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt index b0ce1db5..1e0ff0d7 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/src/sbt-test/graphql-codegen-sbt-plugin/simple/project/plugins.sbt @@ -1,4 +1,4 @@ -sys.props.get("plugin.version").orElse(Some("3.0.1-SNAPSHOT")) match { +sys.props.get("plugin.version").orElse(Some("3.1.0")) match { case Some(x) => addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % x) case _ => sys.error("""|The system property 'plugin.version' is not defined. |Specify this property using the scriptedLaunchOpts -D.""".stripMargin) diff --git a/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt b/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt index 54c2e928..3271bb8f 100644 --- a/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt +++ b/plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt @@ -1 +1 @@ -version in ThisBuild := "3.0.1-SNAPSHOT" +version in ThisBuild := "3.1.0" -- GitLab