Bump version and update changelog

This commit is contained in:
Harmen Stoppels 2021-09-17 16:37:21 +02:00 committed by Greg Becker
parent 7caa844d49
commit 3b55c2e715
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,15 @@
# v0.16.3 (2021-09-21)
* clang/llvm: fix version detection (#19978)
* Fix use of quotes in Python build system (#22279)
* Cray: fix extracting paths from module files (#23472)
* Use AWS CloudFront for source mirror (#23978)
* Ensure all roots of an installed environment are marked explicit in db (#24277)
* Fix fetching for Python 3.8 and 3.9 (#24686)
* locks: only open lockfiles once instead of for every lock held (#24794)
* Remove the EOL centos:6 docker image
# v0.16.2 (2021-05-22) # v0.16.2 (2021-05-22)
* Major performance improvement for `spack load` and other commands. (#23661) * Major performance improvement for `spack load` and other commands. (#23661)

View File

@ -5,7 +5,7 @@
#: major, minor, patch version for Spack, in a tuple #: major, minor, patch version for Spack, in a tuple
spack_version_info = (0, 16, 2) spack_version_info = (0, 16, 3)
#: String containing Spack version joined with .'s #: String containing Spack version joined with .'s
spack_version = '.'.join(str(v) for v in spack_version_info) spack_version = '.'.join(str(v) for v in spack_version_info)