Skip to content

Commit

Permalink
Merge pull request #74 from joasode/version-2024-10-0
Browse files Browse the repository at this point in the history
Release notes for 2024.10.0
  • Loading branch information
joasode authored Oct 15, 2024
2 parents 2172d72 + 135d2ab commit 7451afe
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If you are using easybuild, then here is an easyconfig, you can use:
easyblock = 'Tarball'

name = 'cotainr'
version = '2023.11.0'
version = '2024.10.0'
homepage = 'https://github.com/DeiC-HPC/container-builder'
description = 'cotainr is a tool that helps making Singularity/Apptainer containers.'

Expand Down
2 changes: 1 addition & 1 deletion cotainr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import sys

__version__ = "2023.11.0"
__version__ = "2024.10.0"
_minimum_dependency_version = {
# Versions must be specified as a (major, minor, patchlevel) tuple of
# integers
Expand Down
12 changes: 6 additions & 6 deletions doc/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
"url": "https://cotainr.readthedocs.io/en/latest/"
},
{
"name": "2023.11.0 (stable)",
"name": "2024.10.0 (stable)",
"version": "stable",
"url": "https://cotainr.readthedocs.io/en/stable/"
},
{
"name": "2023.11.0",
"version": "2023.11.0",
"url": "https://cotainr.readthedocs.io/en/2023.11.0/"
},
{
"name": "2023.02.0",
"version": "2023.02.0",
Expand All @@ -18,10 +23,5 @@
"name": "2023.01.0",
"version": "2023.01.0",
"url": "https://cotainr.readthedocs.io/en/2023.01.0/"
},
{
"name": "2022.12.0",
"version": "2022.12.0",
"url": "https://cotainr.readthedocs.io/en/2022.12.0/"
}
]
25 changes: 25 additions & 0 deletions doc/release_notes/2024.10.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 2023.11.0

**Released on October 15th, 2024**

[Documentation for this release](https://cotainr.readthedocs.org/en/2024.10.0/)

A major release mainly focused on synchronizing with the LUMI 09/2024 upgrade.

## New features

- Create an example of using cotainr for building a container with a mpi4py/MPICH conda/pip environment for use on LUMI-C. It includes simple "MPI hello world" examples of how to correctly use such a container on LUMI. [PR#50](https://github.com/DeiC-HPC/cotainr/pull/50)
- Cotainr now features the standard `--version` CLI command, [PR#59](https://github.com/DeiC-HPC/cotainr/pull/59)

## Bug fixes

- Flush the input buffer before prompting the user for permissions, [#61](https://github.com/DeiC-HPC/cotainr/pull/61)
- Fix when base image files have restricted permissions, [PR#49](https://github.com/DeiC-HPC/cotainr/pull/49)
- Minor documentation fixes, [#54](https://github.com/DeiC-HPC/cotainr/pull/54), [#60](https://github.com/DeiC-HPC/cotainr/pull/60), [#69](https://github.com/DeiC-HPC/cotainr/pull/69)

## Maintenance updates

- The LUMI PyTorch example has been updated to match the state of LUMI as of 09/2024, [PR#73](https://github.com/DeiC-HPC/cotainr/pull/73).
- Update documentation to reflect cotainr residing in the CrayEnv software stack on LUMI, [#63](https://github.com/DeiC-HPC/cotainr/pull/63)
- Upgrade the Github Continuous Integration [PR#71](https://github.com/DeiC-HPC/cotainr/pull/71), [PR#72](https://github.com/DeiC-HPC/cotainr/pull/72)
- Change from linting from using `black` to `ruff` [PR#56](https://github.com/DeiC-HPC/cotainr/pull/56)

0 comments on commit 7451afe

Please sign in to comment.