From a74bd08229495ad96b69ca825e1831d95c3f752d Mon Sep 17 00:00:00 2001 From: Laurie Stephey Date: Thu, 15 Jun 2023 08:34:40 -0700 Subject: [PATCH 1/2] bump versions and add to CHANGELOG --- CHANGELOG.md | 9 +++++++++ podman-hpc.spec | 2 +- setup.cfg | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c747da..3827ce5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2023-06-15 + +This is a minor release that fixes several additional bugs. + +- Fixes issue that causes unclean exit from leftover mounts, contributed by Pat Tovo at HPE (#54) +- Fixes issue that causes problems with keepid during image squash (#69) +- Fixes issue that prevents images from building on compute nodes (#66) +- podman-hpc pull now returns nonzero exit if something fails (#57) + ## [1.0.1] - 2023-03-17 This is a minor release that fixes several bugs that have been found in early testing. diff --git a/podman-hpc.spec b/podman-hpc.spec index a59d927..92d8625 100644 --- a/podman-hpc.spec +++ b/podman-hpc.spec @@ -14,7 +14,7 @@ Name: podman-hpc -Version: 1.0.1 +Version: 1.0.2 Release: 1 Summary: Scripts to enable Podman to run in an HPC environment # FIXME: Select a correct license from https://github.com/openSUSE/spec-cleaner#spdx-licenses diff --git a/setup.cfg b/setup.cfg index 7db2b89..8d61a49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = podman-hpc -version = 1.0.1 +version = 1.0.2 [options] packages = podman_hpc From 4860175f797c422691619a520f7d9aafc57e73a4 Mon Sep 17 00:00:00 2001 From: Laurie Stephey Date: Thu, 15 Jun 2023 08:57:30 -0700 Subject: [PATCH 2/2] add shane's duplicate name/tag fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3827ce5..4791e6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This is a minor release that fixes several additional bugs. - Fixes issue that causes problems with keepid during image squash (#69) - Fixes issue that prevents images from building on compute nodes (#66) - podman-hpc pull now returns nonzero exit if something fails (#57) +- Fix issue caused by squashing different images with same name and tag (#53) ## [1.0.1] - 2023-03-17