Skip to content

Commit

Permalink
[RELEASE] v0.0.3 released, prepare for next development iteration
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Aug 24, 2023
1 parent dc48e3f commit 7d81cf7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add the plugin with the `extensions` option enabled.
<plugin>
<groupId>com.marcnuri.plugins</groupId>
<artifactId>gradle-api-maven-plugin</artifactId>
<version>0.0.2</version>
<version>0.0.3</version>
<extensions>true</extensions>
</plugin>
</plugins>
Expand Down Expand Up @@ -60,17 +60,17 @@ Then, configure your IDE to perform a remote debug connection to port `8000`.

The project version should always point to the next release version.

To release a new version, first tag the release with the current `pom.xml` version e.g. `v0.0.2`.
To release a new version, first tag the release with the current `pom.xml` version e.g. `v0.0.3`.
```shell
git tag v0.0.2
git push origin v0.0.2
git tag v0.0.3
git push origin v0.0.3
```

Once we perform a release we need to set the next release version in the `pom.xml` file.
```shell
mvn versions:set -DnewVersion=0.0.3 -DgenerateBackupPoms=false
mvn versions:set -DnewVersion=0.0.4 -DgenerateBackupPoms=false
```
Then, commit the changes with the following message:
```shell
git commit -m "[RELEASE] v0.0.2 released, prepare for next development iteration"
git commit -m "[RELEASE] v0.0.3 released, prepare for next development iteration"
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.marcnuri.plugins</groupId>
<artifactId>gradle-api-maven-plugin</artifactId>
<version>0.0.3</version>
<version>0.0.4</version>
<packaging>maven-plugin</packaging>
<name>Gradle API Maven Plugin</name>
<description>
Expand Down

0 comments on commit 7d81cf7

Please sign in to comment.