Merge branch 'releases/v0.13' into develop

This commit is contained in:
Todd Gamblin 2020-02-09 15:51:39 -08:00
commit 6d2e6e1f4d
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,12 @@
# v0.13.4 (2020-02-07)
This release contains several bugfixes:
* bugfixes for invoking python in various environments (#14349, #14496, #14569)
* brought tab completion up to date (#14392)
* bugfix for removing extensions from views in order (#12961)
* bugfix for nondeterministic hashing for specs with externals (#14390)
# v0.13.3 (2019-12-23)
This release contains more major performance improvements for Spack

View File

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