Skip to content

Commit

Permalink
Bumped version to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Madeeks committed Oct 16, 2023
1 parent 6b96e4f commit 089b328
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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/).

## [Unreleased]
## [1.6.1]

### Added

Expand All @@ -16,7 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- The configuration files for the SSH hook and the Slurm sync hook are no longer generated automatically as part of the CMake installation process.
In other words, the aforementioned hooks are no longer configured and enabled by default.
- Updated recommended runc version to 1.1.9
- Updated CI tests from source on Fedora (36 -> 38)
- Updated CI tests from source on Fedora (36 -> 38) and OpenSUSE Leap (15.4 -> 15.5)

### Fixed

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- Aliaga, Tomas. ETH Zurich - CSCS
- Benedicic, Lucas. ETH Zurich - CSCS
- Brambilla, Michele. ETH Zurich - CSCS
- Chesi, Matteo. ETH Zurich - CSCS
- Cruz, Felipe. ETH Zurich - CSCS
- Fink, Andreas. ETH Zurich - CSCS
- Hooks, Timothy Dayne
Expand Down
10 changes: 5 additions & 5 deletions doc/config/configuration_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ Example configuration file
"securityChecks": true,
"OCIBundleDir": "/var/sarus/OCIBundleDir",
"rootfsFolder": "rootfs",
"prefixDir": "/opt/sarus/1.6.0",
"hooksDir": "/opt/sarus/1.6.0/etc/hooks.d",
"prefixDir": "/opt/sarus/1.6.1",
"hooksDir": "/opt/sarus/1.6.1/etc/hooks.d",
"tempDir": "/tmp",
"localRepositoryBaseDir": "/home",
"centralizedRepositoryDir": "/var/sarus/centralized_repository",
Expand Down Expand Up @@ -497,15 +497,15 @@ Example configuration file
"/opt"
]
},
"seccompProfile": "/opt/sarus/1.6.0/etc/seccomp/default.json",
"seccompProfile": "/opt/sarus/1.6.1/etc/seccomp/default.json",
"apparmorProfile": "sarus-default",
"selinuxLabel": "system_u:system_r:svirt_sarus_t:s0:c124,c675",
"selinuxMountLabel": "system_u:object_r:svirt_sarus_file_t:s0:c715,c811"
"containersPolicy": {
"path": "/opt/sarus/1.6.0/etc/policy.json",
"path": "/opt/sarus/1.6.1/etc/policy.json",
"enforce": false
},
"containersRegistries.dPath": "/opt/sarus/1.6.0/etc/registries.d"
"containersRegistries.dPath": "/opt/sarus/1.6.1/etc/registries.d"
"defaultMPIType": "mpich",
"repositoryMetadataLockTimings": {
"timeoutMs": 120000,
Expand Down
5 changes: 3 additions & 2 deletions spack/packages/sarus/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ class Sarus(CMakePackage):
"""Sarus is an OCI-compliant container engine for HPC systems."""

homepage = "https://github.com/eth-cscs/sarus"
url = "https://github.com/eth-cscs/sarus/archive/1.6.0.tar.gz"
url = "https://github.com/eth-cscs/sarus/archive/1.6.1.tar.gz"
git = "https://github.com/eth-cscs/sarus.git"

version('develop', branch='develop', submodules=True)
version('master', branch='master', submodules=True)
version("1.6.0", tag="1.6.0", submodules=True)
version("1.6.1", tag="1.6.1", submodules=True)
version("1.6.0", commit="9c01d76736940feb360175c515e5778e408e631e")
version("1.5.2", commit="75e223bfe555c15f41d6394b41750c74d56e1d98")
version("1.5.1", commit="9808a4ab7f86359d77f574962f020839266b9ab8")
version("1.5.0", commit="3e244ec8db85978aa42b1c5f47bc94846958bd96")
Expand Down

0 comments on commit 089b328

Please sign in to comment.