Merge tag 'v0.15.4' into develop
This commit is contained in:
commit
b476f8aa63
4 changed files with 27 additions and 6 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
||||||
|
# v0.15.4 (2020-08-12)
|
||||||
|
|
||||||
|
This release contains one feature addition:
|
||||||
|
|
||||||
|
* Users can set `SPACK_GNUPGHOME` to override Spack's GPG path (#17139)
|
||||||
|
|
||||||
|
Several bugfixes for CUDA, binary packaging, and `spack -V`:
|
||||||
|
|
||||||
|
* CUDA package's `.libs` method searches for `libcudart` instead of `libcuda` (#18000)
|
||||||
|
* Don't set `CUDAHOSTCXX` in environments that contain CUDA (#17826)
|
||||||
|
* `buildcache create`: `NoOverwriteException` is a warning, not an error (#17832)
|
||||||
|
* Fix `spack buildcache list --allarch` (#17884)
|
||||||
|
* `spack -V` works with `releases/latest` tag and shallow clones (#17884)
|
||||||
|
|
||||||
|
And fixes for GitHub Actions and tests to ensure that CI passes on the
|
||||||
|
release branch (#15687, #17279, #17328, #17377, #17732).
|
||||||
|
|
||||||
# v0.15.3 (2020-07-28)
|
# v0.15.3 (2020-07-28)
|
||||||
|
|
||||||
This release contains the following bugfixes:
|
This release contains the following bugfixes:
|
||||||
|
|
|
@ -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, 15, 3)
|
spack_version_info = (0, 15, 4)
|
||||||
|
|
||||||
#: 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)
|
||||||
|
|
|
@ -15,7 +15,8 @@
|
||||||
"0.15.0": "0.15.0",
|
"0.15.0": "0.15.0",
|
||||||
"0.15.1": "0.15.1",
|
"0.15.1": "0.15.1",
|
||||||
"0.15.2": "0.15.2",
|
"0.15.2": "0.15.2",
|
||||||
"0.15.3": "0.15.3"
|
"0.15.3": "0.15.3",
|
||||||
|
"0.15.4": "0.15.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"ubuntu:16.04": {
|
"ubuntu:16.04": {
|
||||||
|
@ -34,7 +35,8 @@
|
||||||
"0.15.0": "0.15.0",
|
"0.15.0": "0.15.0",
|
||||||
"0.15.1": "0.15.1",
|
"0.15.1": "0.15.1",
|
||||||
"0.15.2": "0.15.2",
|
"0.15.2": "0.15.2",
|
||||||
"0.15.3": "0.15.3"
|
"0.15.3": "0.15.3",
|
||||||
|
"0.15.4": "0.15.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"centos:7": {
|
"centos:7": {
|
||||||
|
@ -53,7 +55,8 @@
|
||||||
"0.15.0": "0.15.0",
|
"0.15.0": "0.15.0",
|
||||||
"0.15.1": "0.15.1",
|
"0.15.1": "0.15.1",
|
||||||
"0.15.2": "0.15.2",
|
"0.15.2": "0.15.2",
|
||||||
"0.15.3": "0.15.3"
|
"0.15.3": "0.15.3",
|
||||||
|
"0.15.4": "0.15.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"centos:6": {
|
"centos:6": {
|
||||||
|
@ -72,7 +75,8 @@
|
||||||
"0.15.0": "0.15.0",
|
"0.15.0": "0.15.0",
|
||||||
"0.15.1": "0.15.1",
|
"0.15.1": "0.15.1",
|
||||||
"0.15.2": "0.15.2",
|
"0.15.2": "0.15.2",
|
||||||
"0.15.3": "0.15.3"
|
"0.15.3": "0.15.3",
|
||||||
|
"0.15.4": "0.15.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
'develop',
|
'develop',
|
||||||
'0.14', '0.14.0', '0.14.1', '0.14.2',
|
'0.14', '0.14.0', '0.14.1', '0.14.2',
|
||||||
'0.15', '0.15.0', '0.15.1', '0.15.2',
|
'0.15', '0.15.0', '0.15.1', '0.15.2',
|
||||||
'0.15.3',
|
'0.15.3', '0.15.4',
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue