diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-12-23 19:48:36 +0100 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-12-23 19:48:36 +0100 |
commit | 60a5b2a85ed35542086f12ed394d368ef3dc8dd9 (patch) | |
tree | 498fa4b15f42cc67ea8ecb0b6861a3164a1bf55e | |
parent | 4381cb5957f71e36ce5175413084c3c3fa56b7dc (diff) | |
parent | e974b44e8673ded449ce4a3ed5844398b68e81a2 (diff) | |
download | spack-60a5b2a85ed35542086f12ed394d368ef3dc8dd9.tar.gz spack-60a5b2a85ed35542086f12ed394d368ef3dc8dd9.tar.bz2 spack-60a5b2a85ed35542086f12ed394d368ef3dc8dd9.tar.xz spack-60a5b2a85ed35542086f12ed394d368ef3dc8dd9.zip |
Merge tag 'v0.17.1' into develop
-rw-r--r-- | CHANGELOG.md | 25 | ||||
-rw-r--r-- | lib/spack/spack/__init__.py | 2 | ||||
-rwxr-xr-x | share/spack/qa/run-style-tests | 2 |
3 files changed, 28 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e9bcb548ee..44123606df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# v0.17.1 (2021-12-23) + +### Spack Bugfixes +* Allow locks to work under high contention (#27846) +* Improve errors messages from clingo (#27707 #27970) +* Respect package permissions for sbang (#25764) +* Fix --enable-locks behavior (#24675) +* Fix log-format reporter ignoring install errors (#25961) +* Fix overloaded argparse keys (#27379) +* Allow style commands to run with targets other than "develop" (#27472) +* Log lock messages to debug level, instead of verbose level (#27408) +* Handle invalid unicode while logging (#21447) +* spack audit: fix API calls to variants (#27713) +* Provide meaningful message for empty environment installs (#28031) +* Added opensuse leap containers to spack containerize (#27837) +* Revert "patches: make re-applied patches idempotent" (#27625) +* MANPATH can use system defaults (#21682) +* Add "setdefault" subcommand to `spack module tcl` (#14686) +* Regenerate views when specs already installed (#28113) + +### Package bugfixes +* Fix external package detection for OpenMPI (#27255) +* Update the UPC++ package to 2021.9.0 (#26996) +* Added py-vermin v1.3.2 (#28072) + # v0.17.0 (2021-11-05) `v0.17.0` is a major feature release. diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index 5686f27a6d..e0c472dfb9 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -4,7 +4,7 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) #: major, minor, patch version for Spack, in a tuple -spack_version_info = (0, 17, 0) +spack_version_info = (0, 17, 1) #: String containing Spack version joined with .'s spack_version = '.'.join(str(v) for v in spack_version_info) diff --git a/share/spack/qa/run-style-tests b/share/spack/qa/run-style-tests index 9f0cbdb266..df3d441c75 100755 --- a/share/spack/qa/run-style-tests +++ b/share/spack/qa/run-style-tests @@ -19,6 +19,8 @@ args=() if [[ -n $GITHUB_BASE_REF ]]; then args+=("--base" "${GITHUB_BASE_REF}") +else + args+=("--base" "${GITHUB_REF_NAME}") fi # verify that the code style is correct |