summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Becker <becker33@llnl.gov>2020-07-23 16:55:22 -0700
committerGregory Becker <becker33@llnl.gov>2020-07-23 16:55:22 -0700
commit63db5499ee164b1917a8039572c70cf0985a4545 (patch)
treef0a49f27a0a46626d15aaa51fa0212a1a899e630
parent547c71ad78c9f854525339cf0c8ee951c3860ba4 (diff)
parentd6d839cd3e75cfd3203e6498e4dd05d1b88fcbb1 (diff)
downloadspack-63db5499ee164b1917a8039572c70cf0985a4545.tar.gz
spack-63db5499ee164b1917a8039572c70cf0985a4545.tar.bz2
spack-63db5499ee164b1917a8039572c70cf0985a4545.tar.xz
spack-63db5499ee164b1917a8039572c70cf0985a4545.zip
Merge tag 'v0.15.2' into develop
-rw-r--r--CHANGELOG.md19
-rw-r--r--lib/spack/spack/__init__.py2
-rw-r--r--lib/spack/spack/container/images.json12
-rw-r--r--lib/spack/spack/schema/container.py2
4 files changed, 29 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b7e4cc0ad3..d098c0631e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+# v0.15.2 (2020-07-23)
+
+This minor release includes two new features:
+
+* Spack install verbosity is decreased, and more debug levels are added (#17546)
+* The $spack/share/spack/keys directory contains public keys that may be optionally trusted for public binary mirrors (#17684)
+
+This release also includes several important fixes:
+
+* MPICC and related variables are now cleand in the build environment (#17450)
+* LLVM flang only builds CUDA offload components when +cuda (#17466)
+* CI pipelines no longer upload user environments that can contain secrets to the internet (#17545)
+* CI pipelines add bootstrapped compilers to the compiler config (#17536)
+* `spack buildcache list` does not exit on first failure and lists later mirrors (#17565)
+* Apple's "gcc" executable that is an apple-clang compiler does not generate a gcc compiler config (#17589)
+* Mixed compiler toolchains are merged more naturally across different compiler suffixes (#17590)
+* Cray Shasta platforms detect the OS properly (#17467)
+* Additional more minor fixes.
+
# v0.15.1 (2020-07-10)
This minor release includes several important fixes:
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py
index ceb1e256b1..2b87833f7e 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, 15, 1)
+spack_version_info = (0, 15, 2)
#: String containing Spack version joined with .'s
spack_version = '.'.join(str(v) for v in spack_version_info)
diff --git a/lib/spack/spack/container/images.json b/lib/spack/spack/container/images.json
index e4761d4b40..7a7e98be1f 100644
--- a/lib/spack/spack/container/images.json
+++ b/lib/spack/spack/container/images.json
@@ -13,7 +13,8 @@
"0.14.2": "0.14.2",
"0.15": "0.15",
"0.15.0": "0.15.0",
- "0.15.1": "0.15.1"
+ "0.15.1": "0.15.1",
+ "0.15.2": "0.15.2"
}
},
"ubuntu:16.04": {
@@ -30,7 +31,8 @@
"0.14.2": "0.14.2",
"0.15": "0.15",
"0.15.0": "0.15.0",
- "0.15.1": "0.15.1"
+ "0.15.1": "0.15.1",
+ "0.15.2": "0.15.2"
}
},
"centos:7": {
@@ -47,7 +49,8 @@
"0.14.2": "0.14.2",
"0.15": "0.15",
"0.15.0": "0.15.0",
- "0.15.1": "0.15.1"
+ "0.15.1": "0.15.1",
+ "0.15.2": "0.15.2"
}
},
"centos:6": {
@@ -64,7 +67,8 @@
"0.14.2": "0.14.2",
"0.15": "0.15",
"0.15.0": "0.15.0",
- "0.15.1": "0.15.1"
+ "0.15.1": "0.15.1",
+ "0.15.2": "0.15.2"
}
}
}
diff --git a/lib/spack/spack/schema/container.py b/lib/spack/spack/schema/container.py
index 36cb74a875..8b7f8dac3b 100644
--- a/lib/spack/spack/schema/container.py
+++ b/lib/spack/spack/schema/container.py
@@ -32,7 +32,7 @@ container_schema = {
'enum': [
'develop',
'0.14', '0.14.0', '0.14.1', '0.14.2',
- '0.15', '0.15.0', '0.15.1',
+ '0.15', '0.15.0', '0.15.1', '0.15.2',
]
}
},