Skip to content

Bump release to 5.5.0 and enable updates-testing repos on Fedora #549

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DESTDIR ?=
EPOCH_TEST_COMMIT ?= $(shell git merge-base $${DEST_BRANCH:-main} HEAD)
HEAD ?= HEAD

export PODMAN_VERSION ?= "5.4.0"
export PODMAN_VERSION ?= "5.5.0"

.PHONY: podman
podman:
Expand Down
8 changes: 8 additions & 0 deletions plans/main.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ prepare:

# Run tests against Podman buids installed from the distribution.
/distro:
prepare+:
- name: Enable testing repositories
when: initiator == packit && distro == fedora
how: shell
script: |
dnf config-manager setopt updates-testing.enabled=true
dnf -y upgrade --allowerasing --setopt=allow_vendor_change=true

/sanity:
summary: Run Sanity and Coverage checks on Python Podman
discover+:
Expand Down
2 changes: 1 addition & 1 deletion podman/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0/libpod"
LIBPOD_URL = "http://%2Frun%2Fapi.sock/v5.5.0/libpod"
COMPATIBLE_URL = "http://%2Frun%2Fapi.sock/v1.40"
2 changes: 1 addition & 1 deletion podman/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version of PodmanPy."""

__version__ = "5.4.0"
__version__ = "5.5.0"
__compatible_version__ = "1.40"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = podman
version = 5.4.0.1
version = 5.5.0
author = Brent Baude, Jhon Honce, Urvashi Mohnani, Nicola Sella
author_email = [email protected]
description = Bindings for Podman RESTful API
Expand Down