summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.md2
-rw-r--r--internal/version/version.go2
-rw-r--r--wrappers/python/eduvpn_common/__init__.py2
-rw-r--r--wrappers/python/setup.cfg2
-rw-r--r--wrappers/python/setup.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 2e5d783..56437f9 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,4 +1,4 @@
-# 4.0.0 (2025-09-24)
+# 4.0.0 (UNRELEASED)
* Upload Release script:
- Escape changelog newlines
* Lint:
diff --git a/internal/version/version.go b/internal/version/version.go
index 055bf65..015a57b 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -6,4 +6,4 @@ package version
// Version is the latest version
// Update this when releasing
-const Version = "3.0.0"
+const Version = "4.0.0"
diff --git a/wrappers/python/eduvpn_common/__init__.py b/wrappers/python/eduvpn_common/__init__.py
index 528787c..ce1305b 100644
--- a/wrappers/python/eduvpn_common/__init__.py
+++ b/wrappers/python/eduvpn_common/__init__.py
@@ -1 +1 @@
-__version__ = "3.0.0"
+__version__ = "4.0.0"
diff --git a/wrappers/python/setup.cfg b/wrappers/python/setup.cfg
index b4521ed..ef063a6 100644
--- a/wrappers/python/setup.cfg
+++ b/wrappers/python/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = eduvpn_common
-version = 3.0.0
+version = 4.0.0
author = Jeroen Wijenbergh
author_email = jeroen.wijenbergh@geant.org
description = Python wrapper for eduvpn-common, a codebase to build eduVPN clients with
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index 086d8c0..f33e0ec 100644
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -4,7 +4,7 @@ import subprocess
from setuptools import setup
from setuptools.command.build_py import build_py
-COMMON_VERSION = "3.0.0"
+COMMON_VERSION = "4.0.0"
SETUP_PATH = os.path.abspath(__file__)
COMMON_EXPORTS_PATH = os.path.abspath(os.path.join(SETUP_PATH, "../../../exports"))