From 35c4da0260e975a6bcd09038d4246ea1acc91230 Mon Sep 17 00:00:00 2001 From: Jun Qin <11677043+qinjunjerry@users.noreply.github.com> Date: Thu, 23 May 2024 00:13:26 +0200 Subject: [PATCH] Upgrade to Flink 1.19.0, bump version to 2.5.2_1.19.0 --- README.md | 9 +++++++++ build.gradle | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fd7ce89..cb0403a 100644 --- a/README.md +++ b/README.md @@ -273,3 +273,12 @@ A couple of other sub-projects mainly serve as helper utilities providing common - [`common`](common) offers generic helper classes and all entities used throughout the whole project. - [`source-github`](source-github) contains implementations of sources interacting with the Github API. - [`source-mbox`](source-mbox) contains a source implementation that uses [Apache James Mime4J](https://james.apache.org/mime4j/) to parse mbox archives. + +## How to create a new release + +- Update the version info in [`build.gradle`](build.gradle) +- Create a PR to master branch +- Once the PR is merged, create a release tag (e.g., `release-2.5.2_1.19.0`, see [`release.yaml`](.github/workflows/release.yaml)) +and push the tag to the master branch to trigger the release creation. Note that here we disabled the workflow +[`publish.yaml`](.github/workflows/publish.yaml). Otherwise, the action `gradlew publish` in both workflows conflict +with each other. \ No newline at end of file diff --git a/build.gradle b/build.gradle index 54b2400..9a24d27 100644 --- a/build.gradle +++ b/build.gradle @@ -47,7 +47,7 @@ ext { allprojects { group = 'com.ververica.platform' - version = "2.5.1_${flinkVersion}" + version = "2.5.2_${flinkVersion}" description = """Ververica Platform Lab - Flink Repository Analytics""" }