summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2026-03-18 16:35:50 +0100
committerJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2026-03-18 16:35:50 +0100
commit076a7d573f268ddea2fada1de5e2b12fe07ad6a1 (patch)
tree235a33f0ba8d5be4a3da922f4a8303b02d89b036
parent622a264b448f2ac24962dc0bce1eb003b18bddb9 (diff)
Version: Update to 5.0.15.0.1
-rw-r--r--debian/changelog6
-rw-r--r--internal/commonver/commonver.go2
-rw-r--r--rpm/SPECS/python3-eduvpn-common.spec5
-rw-r--r--wrappers/python/eduvpn_common/__init__.py2
-rw-r--r--wrappers/python/setup.cfg2
-rw-r--r--wrappers/python/setup.py2
6 files changed, 14 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index c03d26c..d69456d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+python3-eduvpn-common (5.0.1) unstable; urgency=medium
+
+ * New version
+
+ -- Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> Wed, 18 Mar 2026 16:35:50 +0100
+
python3-eduvpn-common (5.0.0) unstable; urgency=medium
* New version
diff --git a/internal/commonver/commonver.go b/internal/commonver/commonver.go
index 3a66e9b..ef10651 100644
--- a/internal/commonver/commonver.go
+++ b/internal/commonver/commonver.go
@@ -6,4 +6,4 @@ package commonver
// Version is the latest version
// Update this when releasing
-const Version = "5.0.0"
+const Version = "5.0.1"
diff --git a/rpm/SPECS/python3-eduvpn-common.spec b/rpm/SPECS/python3-eduvpn-common.spec
index 60244bb..84347cb 100644
--- a/rpm/SPECS/python3-eduvpn-common.spec
+++ b/rpm/SPECS/python3-eduvpn-common.spec
@@ -1,7 +1,7 @@
%global gomodulesmode GO111MODULE=on
Name: python3-eduvpn-common
-Version: 5.0.0
+Version: 5.0.1
Release: 1%{?dist}
Summary: Python3 eduvpn-common wrapper
@@ -46,6 +46,9 @@ popd
%{python3_sitelib}/eduvpn_common-%{version}*
%changelog
+* Wed Mar 18 2026 Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> - 5.0.1-1
+- New version
+
* Tue Mar 17 2026 Jeroen Wijenbergh <jeroen.wijenbergh@geant.org> - 5.0.0-1
- New version
diff --git a/wrappers/python/eduvpn_common/__init__.py b/wrappers/python/eduvpn_common/__init__.py
index ba7be38..2fe5fde 100644
--- a/wrappers/python/eduvpn_common/__init__.py
+++ b/wrappers/python/eduvpn_common/__init__.py
@@ -1 +1 @@
-__version__ = "5.0.0"
+__version__ = "5.0.1"
diff --git a/wrappers/python/setup.cfg b/wrappers/python/setup.cfg
index 7e2953d..606bf39 100644
--- a/wrappers/python/setup.cfg
+++ b/wrappers/python/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = eduvpn_common
-version = 5.0.0
+version = 5.0.1
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 c524904..ac940dd 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 = "5.0.0"
+COMMON_VERSION = "5.0.1"
SETUP_PATH = os.path.abspath(__file__)
COMMON_EXPORTS_PATH = os.path.abspath(os.path.join(SETUP_PATH, "../../../exports"))