Skip to content

Commit

Permalink
Prepare release 1.1.1
Browse files Browse the repository at this point in the history
- Update changelog
- Update version
- Switch to getting version from code
- Add version to infohpc
  • Loading branch information
scanon committed Dec 6, 2024
1 parent 517d5a4 commit 61ee610
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1] - 2024-12-05

This is a patch release that primarily implements bugfixes and other minor updates.

- Fix for missing layers that causes a migrated image to not show up on all nodes.
- Fix for duplicate tagging on migrated images.
- Fix for timeouts with shared run
- Adds convience modules for volume mounts

## [1.1.0] - 2023-11-12

This is a minor release. It adds initial support for OpenMPI4/PMI2 and OpenMPI5/PMIx.
Expand Down
4 changes: 4 additions & 0 deletions podman_hpc/podman_hpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
from subprocess import Popen, PIPE


__version__ = "1.1.1"


def _round_nearest(x, a):
return round(x / a) * a

Expand Down Expand Up @@ -156,6 +159,7 @@ def podhpc(ctx, additional_stores, squash_dir, log_level):
@pass_siteconf
def infohpc(siteconf):
"""Dump configuration information for podman_hpc."""
print(f"Podman-HPC Version: {__version__}")
siteconf.dump_config()
sys.exit()

Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[metadata]
name = podman-hpc
version = 1.1.0
version = attr: podman_hpc.podman_hpc.__version__


[options]
packages = podman_hpc
Expand Down

0 comments on commit 61ee610

Please sign in to comment.