Skip to content

Commit ac6372e

Browse files
Bump version to 0.14.0-SNAPSHOT (#158)
* Fix set-version * Update Usage.md * Fix release.sh dir --------- Co-authored-by: cuzfrog <8308247+cuzfrog@users.noreply.github.com> Co-authored-by: Cause Chung <cuzfrog@gmail.com>
1 parent 7a7c903 commit ac6372e

14 files changed

Lines changed: 19 additions & 17 deletions

File tree

annotation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>online.sharedtype</groupId>
66
<artifactId>sharedtype-parent</artifactId>
7-
<version>0.13.1-SNAPSHOT</version>
7+
<version>0.14.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

build-tool-plugins/exec/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>online.sharedtype</groupId>
77
<artifactId>sharedtype-parent</artifactId>
8-
<version>0.13.1-SNAPSHOT</version>
8+
<version>0.14.0-SNAPSHOT</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>sharedtype-ap-exec</artifactId>
13-
<version>0.13.1-SNAPSHOT</version>
13+
<version>0.14.0-SNAPSHOT</version>
1414
<name>SharedType Annotation Processor Executor</name>
1515
<description>Call javac to execute annotation processing.</description>
1616

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=0.13.1-SNAPSHOT
1+
version=0.14.0-SNAPSHOT
22
mavenCentralPublishing=true
33
signAllPublications=true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
projectVersion=0.13.1-SNAPSHOT
1+
projectVersion=0.14.0-SNAPSHOT

build-tool-plugins/maven-plugin/it/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>online.sharedtype</groupId>
77
<artifactId>sharedtype-parent</artifactId>
8-
<version>0.13.1-SNAPSHOT</version>
8+
<version>0.14.0-SNAPSHOT</version>
99
<relativePath>../../../pom.xml</relativePath>
1010
</parent>
1111

build-tool-plugins/maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<parent>
66
<groupId>online.sharedtype</groupId>
77
<artifactId>sharedtype-parent</artifactId>
8-
<version>0.13.1-SNAPSHOT</version>
8+
<version>0.14.0-SNAPSHOT</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>sharedtype-maven-plugin</artifactId>
13-
<version>0.13.1-SNAPSHOT</version>
13+
<version>0.14.0-SNAPSHOT</version>
1414
<packaging>maven-plugin</packaging>
1515
<name>SharedType Maven Plugin</name>
1616

doc/Usage.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Menu:
1111
Add Maven properties:
1212
```xml
1313
<properties>
14-
<sharedtype.version>0.13.0</sharedtype.version>
14+
<sharedtype.version>0.13.1</sharedtype.version>
1515
</properties>
1616
```
1717

@@ -70,6 +70,7 @@ record User(String name, int age, String email) {}
7070
Execute:
7171
* maven: `./mvnw stype:gen`
7272
* gradle: `./gradlew stypeGen`
73+
7374
(Why `stype`? Because it's easy to type while explicitly enough to remember.)
7475

7576
By default, below code will be generated:

e2e/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>online.sharedtype</groupId>
66
<artifactId>sharedtype-parent</artifactId>
7-
<version>0.13.1-SNAPSHOT</version>
7+
<version>0.14.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

it/java17/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>online.sharedtype</groupId>
66
<artifactId>sharedtype-it-parent</artifactId>
7-
<version>0.13.1-SNAPSHOT</version>
7+
<version>0.14.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

it/java8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>online.sharedtype</groupId>
66
<artifactId>sharedtype-it-parent</artifactId>
7-
<version>0.13.1-SNAPSHOT</version>
7+
<version>0.14.0-SNAPSHOT</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010

0 commit comments

Comments
 (0)