From ffdf599f976fc95b86b6d01c7c58c07894427fc0 Mon Sep 17 00:00:00 2001 From: Nicola Sella Date: Fri, 2 Aug 2024 15:10:37 +0200 Subject: [PATCH] Bump version to 5.2.0 Also adding myself to Authors in setup.cfg Signed-off-by: Nicola Sella --- Makefile | 2 +- podman/tests/__init__.py | 2 +- podman/version.py | 2 +- setup.cfg | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ea922563..c4ab8b19 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ DESTDIR ?= EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD) HEAD ?= HEAD -export PODMAN_VERSION ?= "5.1.0" +export PODMAN_VERSION ?= "5.2.0" .PHONY: podman podman: diff --git a/podman/tests/__init__.py b/podman/tests/__init__.py index d621958e..6b3e030b 100644 --- a/podman/tests/__init__.py +++ b/podman/tests/__init__.py @@ -3,5 +3,5 @@ # Do not auto-update these from version.py, # as test code should be changed to reflect changes in Podman API versions BASE_SOCK = "unix:///run/api.sock" -LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.1.0/libpod" +LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.2.0/libpod" COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40" diff --git a/podman/version.py b/podman/version.py index 21e45936..92c5ee52 100644 --- a/podman/version.py +++ b/podman/version.py @@ -1,4 +1,4 @@ """Version of PodmanPy.""" -__version__ = "5.1.0" +__version__ = "5.2.0" __compatible_version__ = "1.40" diff --git a/setup.cfg b/setup.cfg index 9b7c880c..7a76fa86 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = podman -version = 5.1.0 -author = Brent Baude, Jhon Honce, Urvashi Mohnani +version = 5.2.0 +author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella author_email = jhonce@redhat.com description = Bindings for Podman RESTful API long_description = file: README.md