diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2019-12-24 01:04:41 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-12-24 01:04:41 -0800 |
commit | 7652d1a4c15d29085e5792e860862f4b331238f1 (patch) | |
tree | eab8db46626c2e73b90629a4b47218f38a0569f4 | |
parent | d7f2a32887e8c05707ca3d9139a0a850d264222b (diff) | |
parent | 55d5b435c8061d9fdc51feb03bf291b0b7a0f24c (diff) | |
download | spack-7652d1a4c15d29085e5792e860862f4b331238f1.tar.gz spack-7652d1a4c15d29085e5792e860862f4b331238f1.tar.bz2 spack-7652d1a4c15d29085e5792e860862f4b331238f1.tar.xz spack-7652d1a4c15d29085e5792e860862f4b331238f1.zip |
Merge branch 'releases/v0.13' into develop
-rw-r--r-- | CHANGELOG.md | 16 | ||||
-rw-r--r-- | lib/spack/spack/__init__.py | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bd18a030ce..2b2a1cf9f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# v0.13.3 (2019-12-23) + +This release contains more major performance improvements for Spack +environments, as well as bugfixes for mirrors and a `python` issue with +RHEL8. + +* mirror bugfixes: symlinks, duplicate patches, and exception handling (#13789) +* don't try to fetch `BundlePackages` (#13908) +* avoid re-fetching patches already added to a mirror (#13908) +* avoid re-fetching alread added patches (#13908) +* avoid re-fetching alread added patches (#13908) +* allow repeated invocations of `spack mirror create` on the same dir (#13908) +* bugfix for RHEL8 when `python` is unavailable (#14252) +* improve concretization performance in environments (#14190) +* improve installation performance in environments (#14263) + # v0.13.2 (2019-12-04) This release contains major performance improvements for Spack environments, as diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index f7caf373e3..0074409661 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -5,7 +5,7 @@ #: major, minor, patch version for Spack, in a tuple -spack_version_info = (0, 13, 2) +spack_version_info = (0, 13, 3) #: String containing Spack version joined with .'s spack_version = '.'.join(str(v) for v in spack_version_info) |