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

Updated documentation about next SNAPSHOT version #949

Merged
merged 1 commit into from
Nov 30, 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 0.32.0


## 0.31.0

* Dependency updates (Kafka 3.9.0, Vert.x 4.5.11, Netty 4.1.115.Final)
Expand Down
9 changes: 9 additions & 0 deletions development-docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ The build pipeline should automatically start for any new commit pushed into the
Wait until the build pipeline is (successfully) finished for the last commit in the release branch.
The regular pipeline will build the release ZIP / TAR.GZ files as well as the documentation and store them as artifacts.
It will also stage the Maven artifacts.
When it's done, mark the build in the Azure Pipelines UI to be retained forever

Then run the release pipeline manually from the Azure Pipelines UI.
The release pipeline is named `kafka-bridge-release`.
When starting the new run, it will ask for several parameters which you need to fill:
Expand Down Expand Up @@ -61,6 +63,13 @@ Announce the release on following channels:
* Slack
* Twitter (if the release is significant enough)

### Update to next release

The `main` git branch has to be updated with the next SNAPSHOT version.
Update the version to the next SNAPSHOT version using the `next_version` `make` target.
For example to update the next version to 0.32.0-SNAPSHOT run: `make NEXT_VERSION=0.32.0-SNAPSHOT next_version`.
Add a header for the new release to the CHANGELOG.md file

### Release candidates

Release candidates are built with the same release pipeline as the final releases.
Expand Down
Loading