Skip to content

Commit 0cc7f7d

Browse files
committed
Bump to release version - 1.5.0
1 parent c7f41a3 commit 0cc7f7d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id "maven-publish"
99
}
1010

11-
version = "1.5.0-SNAPSHOT"
11+
version = "1.5.0"
1212
group = "io.github.kobylynskyi"
1313

1414
repositories {

plugins/graphql-java-codegen-gradle-plugin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This Gradle plugin is able to generate the following classes based on your Graph
1919

2020
```groovy
2121
plugins {
22-
id "io.github.kobylynskyi.graphql.codegen" version "1.4.2"
22+
id "io.github.kobylynskyi.graphql.codegen" version "1.5.0"
2323
}
2424
```
2525

@@ -33,7 +33,7 @@ buildscript {
3333
}
3434
}
3535
dependencies {
36-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.4.2"
36+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:1.5.0"
3737
}
3838
}
3939

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id "idea"
44
id "application"
55
id "net.ltgt.apt" version "0.20"
6-
id "io.github.kobylynskyi.graphql.codegen" version "1.5.0-SNAPSHOT"
6+
id "io.github.kobylynskyi.graphql.codegen" version "1.5.0"
77
}
88

99
mainClassName = "io.github.kobylynskyi.bikeshop.Application"

plugins/graphql-java-codegen-gradle-plugin/graphql-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 = "1.5.0-SNAPSHOT"
20+
version = "1.5.0"
2121
description = "Provides a task for generating Java code based on GraphQL schema"
2222

2323
dependencies {

plugins/graphql-java-codegen-maven-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This Maven plugin is able to generate the following classes based on your GraphQ
2424
<plugin>
2525
<groupId>io.github.kobylynskyi</groupId>
2626
<artifactId>graphql-codegen-maven-plugin</artifactId>
27-
<version>1.4.2</version>
27+
<version>1.5.0</version>
2828
<executions>
2929
<execution>
3030
<goals>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.github.kobylynskyi.graphql.codegen</groupId>
55
<artifactId>graphql-codegen-maven-plugin-example</artifactId>
6-
<version>1.5.0-SNAPSHOT</version>
6+
<version>1.5.0</version>
77

88
<name>graphql-codegen-maven-plugin-example</name>
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git
3636
</developerConnection>
3737
<url>https://github.com/kobylynskyi/graphql-java-codegen/tree/master/plugins/graphql-java-codegen-maven-plugin</url>
38-
<tag>v1.4.2</tag>
38+
<tag>v1.5.0</tag>
3939
</scm>
4040

4141
<distributionManagement>

0 commit comments

Comments
 (0)