Skip to content

Commit bb4aadb

Browse files
committed
Bumped version to 1.6.4
1 parent b03976d commit bb4aadb

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CHANGELOG.md

+1-1
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.4]
88

99
### Added
1010

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.6.3",
451-
"hooksDir": "/opt/sarus/1.6.3/etc/hooks.d",
450+
"prefixDir": "/opt/sarus/1.6.4",
451+
"hooksDir": "/opt/sarus/1.6.4/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.6.3/etc/seccomp/default.json",
500+
"seccompProfile": "/opt/sarus/1.6.4/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.6.3/etc/policy.json",
505+
"path": "/opt/sarus/1.6.4/etc/policy.json",
506506
"enforce": false
507507
},
508-
"containersRegistries.dPath": "/opt/sarus/1.6.3/etc/registries.d"
508+
"containersRegistries.dPath": "/opt/sarus/1.6.4/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.6.3.tar.gz"
33+
url = "https://github.com/eth-cscs/sarus/archive/1.6.4.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.6.3", tag="1.6.3", submodules=True)
38+
version("1.6.4", tag="1.6.4", submodules=True)
39+
version("1.6.3", commit="169ea2149a26a21fe73683be0eb0a31fb3806671")
3940
version("1.6.2", commit="4af913f4d65679f78e5bb7f2c006d8cff8d24b1d")
4041
version("1.6.1", commit="089b3284473f82a08d3541d133f7cd65df92a6e4")
4142
version("1.6.0", commit="9c01d76736940feb360175c515e5778e408e631e")

0 commit comments

Comments
 (0)