Skip to content

Commit 4dfce88

Browse files
committed
Bump version to 5.3.0 - release
1 parent 7eaf0f5 commit 4dfce88

File tree

17 files changed

+22
-22
lines changed

17 files changed

+22
-22
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id "org.sonarqube" version "3.2.0"
1010
}
1111

12-
def graphqlCodegenVersion = '5.3.0-SNAPSHOT' // This variable used in the automatic release process
12+
def graphqlCodegenVersion = '5.3.0' // This variable used in the automatic release process
1313

1414
group = "io.github.kobylynskyi"
1515
version = graphqlCodegenVersion

plugins/gradle/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
```groovy
1919
plugins {
20-
id "io.github.kobylynskyi.graphql.codegen" version "5.2.0"
20+
id "io.github.kobylynskyi.graphql.codegen" version "5.3.0"
2121
}
2222
```
2323

@@ -31,7 +31,7 @@ buildscript {
3131
}
3232
}
3333
dependencies {
34-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.2.0"
34+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.3.0"
3535
}
3636
}
3737

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ 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 "5.3.0-SNAPSHOT"
7+
id "io.github.kobylynskyi.graphql.codegen" version "5.3.0"
88
}
99

10-
def graphqlCodegenClientKotlinVersion = '5.3.0-SNAPSHOT' // Variable used in the automatic release process
10+
def graphqlCodegenClientKotlinVersion = '5.3.0' // Variable used in the automatic release process
1111

1212
group = 'io.github.dreamylost'
1313
version = graphqlCodegenClientKotlinVersion
@@ -29,7 +29,7 @@ repositories {
2929

3030

3131
dependencies {
32-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.3.0-SNAPSHOT"
32+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.3.0"
3333
implementation "javax.validation:validation-api:2.0.1.Final"
3434
implementation "com.squareup.okhttp3:okhttp:4.2.2"
3535
implementation "com.fasterxml.jackson.core:jackson-core:2.12.0"

plugins/gradle/example-client/build.gradle

+2-2
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 "5.3.0-SNAPSHOT"
10+
id "io.github.kobylynskyi.graphql.codegen" version "5.3.0"
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:5.3.0-SNAPSHOT"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.3.0"
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

+1-1
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 "5.3.0-SNAPSHOT"
9+
id "io.github.kobylynskyi.graphql.codegen" version "5.3.0"
1010
}
1111

1212
mainClassName = "io.github.kobylynskyi.product.Application"

plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: "java"
1616
apply plugin: "idea"
1717
apply plugin: "maven-publish"
1818

19-
def graphqlCodegenGradlePluginVersion = '5.3.0-SNAPSHOT' // This variable used in the automatic release process
19+
def graphqlCodegenGradlePluginVersion = '5.3.0' // This variable used in the automatic release process
2020

2121
group = "io.github.kobylynskyi"
2222
version = graphqlCodegenGradlePluginVersion

plugins/maven/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<plugin>
2121
<groupId>io.github.kobylynskyi</groupId>
2222
<artifactId>graphql-codegen-maven-plugin</artifactId>
23-
<version>5.2.0</version>
23+
<version>5.3.0</version>
2424
<executions>
2525
<execution>
2626
<goals>

plugins/maven/example-client/pom.xml

+1-1
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>5.3.0-SNAPSHOT</version>
7+
<version>5.3.0</version>
88
<name>graphql-codegen-maven-plugin-example-client</name>
99

1010
<build>

plugins/maven/example-server/pom.xml

+1-1
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>5.3.0-SNAPSHOT</version>
7+
<version>5.3.0</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

plugins/maven/graphql-java-codegen-maven-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>io.github.kobylynskyi</groupId>
55
<artifactId>graphql-codegen-maven-plugin</artifactId>
6-
<version>5.3.0-SNAPSHOT</version>
6+
<version>5.3.0</version>
77
<packaging>maven-plugin</packaging>
88

99
<name>graphql-codegen-maven-plugin</name>
@@ -72,7 +72,7 @@
7272
<version.maven-gpg-plugin>3.0.1</version.maven-gpg-plugin>
7373
<version.maven-shared-utils>3.3.4</version.maven-shared-utils>
7474

75-
<version.graphql-java-codegen>5.3.0-SNAPSHOT</version.graphql-java-codegen>
75+
<version.graphql-java-codegen>5.3.0</version.graphql-java-codegen>
7676
</properties>
7777

7878
<dependencies>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.3.0-SNAPSHOT")
1+
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.3.0")
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "5.3.0-SNAPSHOT"
1+
version in ThisBuild := "5.3.0"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.3.0-SNAPSHOT")
1+
addSbtPlugin("io.github.jxnu-liguobin" % "graphql-codegen-sbt-plugin" % "5.3.0")
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "5.3.0-SNAPSHOT"
1+
version in ThisBuild := "5.3.0"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sys.props.get("plugin.version").orElse(Some("5.3.0-SNAPSHOT")) match {
1+
sys.props.get("plugin.version").orElse(Some("5.3.0")) 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)
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "5.3.0-SNAPSHOT"
1+
version in ThisBuild := "5.3.0"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "5.3.0-SNAPSHOT"
1+
version in ThisBuild := "5.3.0"

0 commit comments

Comments
 (0)