Skip to content

Commit

Permalink
Bump version to 5.1.0 - release
Browse files Browse the repository at this point in the history
  • Loading branch information
kobylynskyi committed Apr 27, 2021
1 parent 6b48601 commit d23aed9
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
id "org.sonarqube" version "3.1.1"
}

def graphqlCodegenVersion = '5.1.0-SNAPSHOT' // This variable used in the automatic release process
def graphqlCodegenVersion = '5.1.0' // This variable used in the automatic release process

group = "io.github.kobylynskyi"
version = graphqlCodegenVersion
Expand Down
6 changes: 3 additions & 3 deletions plugins/gradle/example-client-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
plugins {
id 'java'
id "org.jetbrains.kotlin.jvm" version "1.3.71"
id "io.github.kobylynskyi.graphql.codegen" version "5.1.0-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "5.1.0"
}

def graphqlCodegenClientKotlinVersion = '5.1.0-SNAPSHOT' // Variable used in the automatic release process
def graphqlCodegenClientKotlinVersion = '5.1.0' // Variable used in the automatic release process

group = 'io.github.dreamylost'
version = graphqlCodegenClientKotlinVersion
Expand All @@ -29,7 +29,7 @@ repositories {


dependencies {
implementation "io.github.kobylynskyi:graphql-java-codegen:5.1.0-SNAPSHOT"
implementation "io.github.kobylynskyi:graphql-java-codegen:5.1.0"
implementation "javax.validation:validation-api:2.0.1.Final"
implementation "com.squareup.okhttp3:okhttp:4.2.2"
implementation "com.fasterxml.jackson.core:jackson-core:2.12.0"
Expand Down
4 changes: 2 additions & 2 deletions plugins/gradle/example-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 "5.1.0-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "5.1.0"
}

mainClassName = "io.github.kobylynskyi.order.Application"
Expand All @@ -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:5.1.0-SNAPSHOT"
implementation "io.github.kobylynskyi:graphql-java-codegen:5.1.0"

implementation "org.apache.httpcomponents:httpclient:4.5.13"
implementation "javax.validation:validation-api:2.0.1.Final"
Expand Down
2 changes: 1 addition & 1 deletion plugins/gradle/example-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 "5.1.0-SNAPSHOT"
id "io.github.kobylynskyi.graphql.codegen" version "5.1.0"
}

mainClassName = "io.github.kobylynskyi.product.Application"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: "java"
apply plugin: "idea"
apply plugin: "maven-publish"

def graphqlCodegenGradlePluginVersion = '5.1.0-SNAPSHOT' // This variable used in the automatic release process
def graphqlCodegenGradlePluginVersion = '5.1.0' // This variable used in the automatic release process

group = "io.github.kobylynskyi"
version = graphqlCodegenGradlePluginVersion
Expand Down
2 changes: 1 addition & 1 deletion plugins/maven/example-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
<version>5.1.0-SNAPSHOT</version>
<version>5.1.0</version>
<name>graphql-codegen-maven-plugin-example-client</name>

<build>
Expand Down
2 changes: 1 addition & 1 deletion plugins/maven/example-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
<version>5.1.0-SNAPSHOT</version>
<version>5.1.0</version>
<name>graphql-codegen-maven-plugin-example-server</name>

<build>
Expand Down
4 changes: 2 additions & 2 deletions plugins/maven/graphql-java-codegen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId>
<version>5.1.0-SNAPSHOT</version>
<version>5.1.0</version>
<packaging>maven-plugin</packaging>

<name>graphql-codegen-maven-plugin</name>
Expand Down Expand Up @@ -72,7 +72,7 @@
<version.maven-gpg-plugin>1.6</version.maven-gpg-plugin>
<version.maven-shared-utils>3.3.3</version.maven-shared-utils>

<version.graphql-java-codegen>5.1.0-SNAPSHOT</version.graphql-java-codegen>
<version.graphql-java-codegen>5.1.0</version.graphql-java-codegen>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.1.0-SNAPSHOT")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.1.0")
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "5.1.0-SNAPSHOT"
version in ThisBuild := "5.1.0"
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.1.0-SNAPSHOT")
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.1.0")
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "5.1.0-SNAPSHOT"
version in ThisBuild := "5.1.0"
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sys.props.get("plugin.version").orElse(Some("5.1.0-SNAPSHOT")) match {
sys.props.get("plugin.version").orElse(Some("5.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)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "5.1.0-SNAPSHOT"
version in ThisBuild := "5.1.0"
2 changes: 1 addition & 1 deletion plugins/sbt/graphql-java-codegen-sbt-plugin/version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "5.1.0-SNAPSHOT"
version in ThisBuild := "5.1.0"

0 comments on commit d23aed9

Please sign in to comment.