Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
task: updated version and added release script
Browse files Browse the repository at this point in the history
  • Loading branch information
yannicklamprecht committed Mar 6, 2020
1 parent 76d28f8 commit 826425c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion PathfinderAPI/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>

<pluginRepositories>
Expand Down
2 changes: 1 addition & 1 deletion PathfinderPlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,6 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion PathfinderTestPlugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion PathfinderTestPluginJava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion Pathfinder_1_13_2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion Pathfinder_1_14/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>

</project>
2 changes: 1 addition & 1 deletion Pathfinder_1_15/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>PathfindergoalAPI</artifactId>
<groupId>com.github.ysl3000.pathfindergoalapi</groupId>
<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<dokka.version>0.10.1</dokka.version>
</properties>

<version>1.152.1-SNAPSHOT</version>
<version>1.152.2-SNAPSHOT</version>

<dependencies>
<dependency>
Expand Down
7 changes: 6 additions & 1 deletion update-version.sh → release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,9 @@ then
fi

mvn versions:set -DnewVersion="$1"
mvn versions:commit
mvn versions:commit

git checkout origin/master
git pull origin master
git tag "$1"
git push orgin master --

0 comments on commit 826425c

Please sign in to comment.