From 2190e7a2575c811f8c00ac5ef0dd991b779415e9 Mon Sep 17 00:00:00 2001 From: Urvashi Mohnani Date: Wed, 3 Jan 2024 07:35:28 -0500 Subject: [PATCH] Bump version to 4.8.2 Signed-off-by: Urvashi Mohnani --- Makefile | 2 +- podman/tests/__init__.py | 2 +- podman/version.py | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b78ecb46..5bd0decc 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 ?= "4.8.1" +export PODMAN_VERSION ?= "4.8.2" .PHONY: podman podman: diff --git a/podman/tests/__init__.py b/podman/tests/__init__.py index e248d20f..408f135c 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/v4.8.1/libpod" +LIBPOD_URL = "http://%2Frun%2Fapi.sock/v4.8.2/libpod" COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40" diff --git a/podman/version.py b/podman/version.py index dbcac609..9fc2d7e1 100644 --- a/podman/version.py +++ b/podman/version.py @@ -1,4 +1,4 @@ """Version of PodmanPy.""" -__version__ = "4.8.1" +__version__ = "4.8.2" __compatible_version__ = "1.40" diff --git a/setup.cfg b/setup.cfg index 307a5bca..0da5c104 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = podman -version = 4.8.1 +version = 4.8.2 author = Brent Baude, Jhon Honce author_email = jhonce@redhat.com description = Bindings for Podman RESTful API