This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to annotated tag release-1.12.7-rc1 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 54240124bc1442c82dc543f14857d66ffe711799 Author: Chesnay Schepler <[email protected]> AuthorDate: Tue Dec 14 23:36:16 2021 +0100 Commit for release 2.12.7 --- docs/_config.yml | 4 ++-- flink-python/pyflink/version.py | 2 +- tools/releasing/create_release_branch.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index 5c76cd4..54a2763 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -27,10 +27,10 @@ # we change the version for the complete docs when forking of a release branch # etc. # The full version string as referenced in Maven (e.g. 1.2.1) -version: "1.12.5" +version: "2.12.7" # For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot # release this should be the same as the regular version -version_title: 1.12 +version_title: 2.12 # Branch on Github for this version github_branch: release-1.12 diff --git a/flink-python/pyflink/version.py b/flink-python/pyflink/version.py index 2646047..744a7bb 100644 --- a/flink-python/pyflink/version.py +++ b/flink-python/pyflink/version.py @@ -20,4 +20,4 @@ The pyflink version will be consistent with the flink version and follow the PEP440. .. seealso:: https://www.python.org/dev/peps/pep-0440 """ -__version__ = "1.12.5" +__version__ = "2.12.7" diff --git a/tools/releasing/create_release_branch.sh b/tools/releasing/create_release_branch.sh index 8a0de1a..279088b 100755 --- a/tools/releasing/create_release_branch.sh +++ b/tools/releasing/create_release_branch.sh @@ -54,13 +54,13 @@ if [ "$RELEASE_CANDIDATE" != "none" ]; then target_branch=$target_branch-rc$RELEASE_CANDIDATE fi -git checkout -b $target_branch +#git checkout -b $target_branch #change version in all pom files find . -name 'pom.xml' -type f -exec perl -pi -e 's#<version>(.*)'$OLD_VERSION'(.*)</version>#<version>${1}'$NEW_VERSION'${2}</version>#' {} \; pushd tools -./releasing/update_japicmp_configuration.sh +#./releasing/update_japicmp_configuration.sh popd #change version of documentation
