Merge tag 'v0.15.3' into develop
This commit is contained in:
commit
f24dd29cd2
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,3 +1,15 @@
|
||||
# v0.15.3 (2020-07-28)
|
||||
|
||||
This release contains the following bugfixes:
|
||||
|
||||
* Fix handling of relative view paths (#17721)
|
||||
* Fixes for binary relocation (#17418, #17455)
|
||||
* Fix redundant printing of error messages in build environment (#17709)
|
||||
|
||||
It also adds a support script for Spack tutorials:
|
||||
|
||||
* Add a tutorial setup script to share/spack (#17705, #17722)
|
||||
|
||||
# v0.15.2 (2020-07-23)
|
||||
|
||||
This minor release includes two new features:
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
|
||||
#: major, minor, patch version for Spack, in a tuple
|
||||
spack_version_info = (0, 15, 2)
|
||||
spack_version_info = (0, 15, 3)
|
||||
|
||||
#: String containing Spack version joined with .'s
|
||||
spack_version = '.'.join(str(v) for v in spack_version_info)
|
||||
|
@ -14,7 +14,8 @@
|
||||
"0.15": "0.15",
|
||||
"0.15.0": "0.15.0",
|
||||
"0.15.1": "0.15.1",
|
||||
"0.15.2": "0.15.2"
|
||||
"0.15.2": "0.15.2",
|
||||
"0.15.3": "0.15.3"
|
||||
}
|
||||
},
|
||||
"ubuntu:16.04": {
|
||||
@ -32,7 +33,8 @@
|
||||
"0.15": "0.15",
|
||||
"0.15.0": "0.15.0",
|
||||
"0.15.1": "0.15.1",
|
||||
"0.15.2": "0.15.2"
|
||||
"0.15.2": "0.15.2",
|
||||
"0.15.3": "0.15.3"
|
||||
}
|
||||
},
|
||||
"centos:7": {
|
||||
@ -50,7 +52,8 @@
|
||||
"0.15": "0.15",
|
||||
"0.15.0": "0.15.0",
|
||||
"0.15.1": "0.15.1",
|
||||
"0.15.2": "0.15.2"
|
||||
"0.15.2": "0.15.2",
|
||||
"0.15.3": "0.15.3"
|
||||
}
|
||||
},
|
||||
"centos:6": {
|
||||
@ -68,7 +71,8 @@
|
||||
"0.15": "0.15",
|
||||
"0.15.0": "0.15.0",
|
||||
"0.15.1": "0.15.1",
|
||||
"0.15.2": "0.15.2"
|
||||
"0.15.2": "0.15.2",
|
||||
"0.15.3": "0.15.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -33,6 +33,7 @@
|
||||
'develop',
|
||||
'0.14', '0.14.0', '0.14.1', '0.14.2',
|
||||
'0.15', '0.15.0', '0.15.1', '0.15.2',
|
||||
'0.15.3',
|
||||
]
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user