This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch release-2.0
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/release-2.0 by this push:
new 593474b06a [release] Update PyPaimon version to 2.0.dev
593474b06a is described below
commit 593474b06a80dfdef7fcb4e65669a2a34a83fbc8
Author: JingsongLi <[email protected]>
AuthorDate: Fri Jul 31 21:26:05 2026 +0800
[release] Update PyPaimon version to 2.0.dev
---
docs/docs/project/creating-a-release.md | 4 ++--
docs/docs/project/verifying-a-release-candidate.md | 2 +-
paimon-python/setup.py | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/docs/project/creating-a-release.md
b/docs/docs/project/creating-a-release.md
index c6fbe2e11b..adf95e8972 100644
--- a/docs/docs/project/creating-a-release.md
+++ b/docs/docs/project/creating-a-release.md
@@ -138,11 +138,11 @@ notes. Ensure CI is green on the commit from which the
candidate will be cut.
### Set the release variables
-The following example deliberately uses different Java and Python versions:
+For the 2.0.0 release, use matching Java and Python versions:
```shell
PAIMON_VERSION="2.0.0"
-PYPAIMON_VERSION="1.5.0"
+PYPAIMON_VERSION="2.0.0"
RC_NUMBER="1"
RC_REF="release-${PAIMON_VERSION}-rc${RC_NUMBER}"
diff --git a/docs/docs/project/verifying-a-release-candidate.md
b/docs/docs/project/verifying-a-release-candidate.md
index 6910c909f4..1beece391c 100644
--- a/docs/docs/project/verifying-a-release-candidate.md
+++ b/docs/docs/project/verifying-a-release-candidate.md
@@ -36,7 +36,7 @@ Take all values and URLs from the vote email:
```shell
PAIMON_VERSION="2.0.0"
-PYPAIMON_VERSION="1.5.0"
+PYPAIMON_VERSION="2.0.0"
RC_NUMBER="1"
RC_TAG="release-${PAIMON_VERSION}-rc${RC_NUMBER}"
diff --git a/paimon-python/setup.py b/paimon-python/setup.py
index 85c4efcd56..78a2d471cd 100644
--- a/paimon-python/setup.py
+++ b/paimon-python/setup.py
@@ -24,12 +24,12 @@ import tarfile
import tempfile
from setuptools import find_packages, setup
-VERSION = "1.5.dev"
+VERSION = "2.0.dev"
def get_dev_version():
"""Generate dev version with commit date.
- Format: 1.5.devYYYYMMDD (e.g. 1.5.dev20260415)
+ Format: 2.0.devYYYYMMDD (e.g. 2.0.dev20260415)
Uses the commit date (author date) for reproducibility.
"""
base = VERSION.rstrip(".")