Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release #29

Merged
merged 3 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
- master

env:
RELEASE_VERSION: "0.4.23"
DEVELOP_VERSION: "0.4.24-SNAPSHOT"
RELEASE_VERSION: "0.4.24"
DEVELOP_VERSION: "0.4.25-SNAPSHOT"
GIT_AUTHOR_NAME: "@swisspost-devs"
GIT_AUTHOR_EMAIL: "oss@post.ch"
GIT_COMMITTER_NAME: "swisspost-devs"
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,8 @@ There is a complete [documentation](https://nidi3.github.io/apikana-java/site/pl

### Development
The development is done in the `develop` branch.
Releasing is done by defining the release and new development version in `release.sh` and by rebasing the develop branch onto the master branch.
[Travis CI](https://travis-ci.org) will then pick this up and perform the release.

### Release
Releasing is done by incrementing the new RELEASE and DEVELOP version in `publish.yml` and by merging the develop branch
into the master branch. [GitHub Actions](https://github.com/swisspost/apikana-java/actions) will then pick this up and
perform the release.
2 changes: 1 addition & 1 deletion apikana-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.swisspush.apikana</groupId>
<artifactId>apikana</artifactId>
<version>0.4.24-SNAPSHOT</version>
<version>0.4.23</version>
</parent>

<groupId>org.swisspush.maven.plugins</groupId>
Expand Down
2 changes: 1 addition & 1 deletion apikana-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.swisspush.apikana</groupId>
<artifactId>apikana</artifactId>
<version>0.4.24-SNAPSHOT</version>
<version>0.4.23</version>
</parent>

<artifactId>apikana-parent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.swisspush.apikana</groupId>
<artifactId>apikana</artifactId>
<version>0.4.24-SNAPSHOT</version>
<version>0.4.23</version>
<packaging>pom</packaging>

<name>${project.artifactId}</name>
Expand Down
Loading