Skip to content

Commit daa4837

Browse files
Merge pull request #549 from inknos/5.5.0
Bump release to 5.5.0 and enable updates-testing repos on Fedora
2 parents 7054b46 + ca08bb1 commit daa4837

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DESTDIR ?=
88
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
99
HEAD ?= HEAD
1010

11-
export PODMAN_VERSION ?= "5.4.0"
11+
export PODMAN_VERSION ?= "5.5.0"
1212

1313
.PHONY: podman
1414
podman:

plans/main.fmf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ prepare:
5151

5252
# Run tests against Podman buids installed from the distribution.
5353
/distro:
54+
prepare+:
55+
- name: Enable testing repositories
56+
when: initiator == packit && distro == fedora
57+
how: shell
58+
script: |
59+
dnf config-manager setopt updates-testing.enabled=true
60+
dnf -y upgrade --allowerasing --setopt=allow_vendor_change=true
61+
5462
/sanity:
5563
summary: Run Sanity and Coverage checks on Python Podman
5664
discover+:

podman/tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Do not auto-update these from version.py,
44
# as test code should be changed to reflect changes in Podman API versions
55
BASE_SOCK = "unix:///run/api.sock"
6-
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.4.0/libpod"
6+
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.5.0/libpod"
77
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"

podman/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version of PodmanPy."""
22

3-
__version__ = "5.4.0"
3+
__version__ = "5.5.0"
44
__compatible_version__ = "1.40"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = podman
3-
version = 5.4.0.1
3+
version = 5.5.0
44
author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella
55
author_email = [email protected]
66
description = Bindings for Podman RESTful API

0 commit comments

Comments
 (0)