Skip to content

Commit 9c01d76

Browse files
committed
Bumped version to 1.6.0
1 parent c64b7f6 commit 9c01d76

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## [Unreleased]
7+
## [1.6.0]
88

99
### Added
1010

@@ -15,11 +15,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1515
The message is displayed at a [configurable interval](https://sarus.readthedocs.io/en/stable/config/configuration_reference.html#repositorymetadatalocktimings-object-optional) (default 10 seconds), until the lock acquisition timeout is reached.
1616
- Added support for the optional `defaultMPIType` parameter in the `sarus.json` configuration file. More details [here](https://sarus.readthedocs.io/en/stable/config/configuration_reference.html#defaultmpitype-string-optional).
1717
- Added support for the optional `repositoryMetadataLockTimings` parameter in the `sarus.json` configuration file. More details [here](https://sarus.readthedocs.io/en/stable/config/configuration_reference.html#repositorymetadatalocktimings-object-optional).
18+
- Added the AMD GPU OCI hook to provide access to ROCm AMD GPU devices inside the container. More details [here](https://sarus.readthedocs.io/en/stable/config/amdgpu-hook.html)
1819
- Added a new OCI hook to perform arbitrary sequences of bind mounts and device mounts into containers.
1920
The hook is meant to streamline the implementation and usage of advanced features which can be enabled through sets of related mounts.
2021
More details [here](https://sarus.readthedocs.io/en/stable/config/mount-hook.html).
2122
- Added a note about the Boost minimum required version 1.77 when building on ARM.
22-
- Added the AMD GPU OCI hook to provide access to ROCm AMD GPU devices inside the container. More details [here](https://sarus.readthedocs.io/en/stable/config/amdgpu-hook.html)
2323

2424
### Changed
2525

doc/config/configuration_reference.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,8 @@ Example configuration file
447447
"securityChecks": true,
448448
"OCIBundleDir": "/var/sarus/OCIBundleDir",
449449
"rootfsFolder": "rootfs",
450-
"prefixDir": "/opt/sarus/1.5.2",
451-
"hooksDir": "/opt/sarus/1.5.2/etc/hooks.d",
450+
"prefixDir": "/opt/sarus/1.6.0",
451+
"hooksDir": "/opt/sarus/1.6.0/etc/hooks.d",
452452
"tempDir": "/tmp",
453453
"localRepositoryBaseDir": "/home",
454454
"centralizedRepositoryDir": "/var/sarus/centralized_repository",
@@ -497,15 +497,15 @@ Example configuration file
497497
"/opt"
498498
]
499499
},
500-
"seccompProfile": "/opt/sarus/1.5.2/etc/seccomp/default.json",
500+
"seccompProfile": "/opt/sarus/1.6.0/etc/seccomp/default.json",
501501
"apparmorProfile": "sarus-default",
502502
"selinuxLabel": "system_u:system_r:svirt_sarus_t:s0:c124,c675",
503503
"selinuxMountLabel": "system_u:object_r:svirt_sarus_file_t:s0:c715,c811"
504504
"containersPolicy": {
505-
"path": "/opt/sarus/1.5.2/etc/policy.json",
505+
"path": "/opt/sarus/1.6.0/etc/policy.json",
506506
"enforce": false
507507
},
508-
"containersRegistries.dPath": "/opt/sarus/1.5.2/etc/registries.d"
508+
"containersRegistries.dPath": "/opt/sarus/1.6.0/etc/registries.d"
509509
"defaultMPIType": "mpich",
510510
"repositoryMetadataLockTimings": {
511511
"timeoutMs": 120000,

spack/packages/sarus/package.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ class Sarus(CMakePackage):
3030
"""Sarus is an OCI-compliant container engine for HPC systems."""
3131

3232
homepage = "https://github.com/eth-cscs/sarus"
33-
url = "https://github.com/eth-cscs/sarus/archive/1.5.2.tar.gz"
33+
url = "https://github.com/eth-cscs/sarus/archive/1.6.0.tar.gz"
3434
git = "https://github.com/eth-cscs/sarus.git"
3535

3636
version('develop', branch='develop', submodules=True)
3737
version('master', branch='master', submodules=True)
38-
version("1.5.2", tag="1.5.2", submodules=True)
38+
version("1.6.0", tag="1.6.0", submodules=True)
39+
version("1.5.2", commit="75e223bfe555c15f41d6394b41750c74d56e1d98")
3940
version("1.5.1", commit="9808a4ab7f86359d77f574962f020839266b9ab8")
4041
version("1.5.0", commit="3e244ec8db85978aa42b1c5f47bc94846958bd96")
4142
version("1.4.2", commit="13af2723b5c1cd1890d056af715946596f7ff2c6")

0 commit comments

Comments
 (0)