From 45accfac1584ca9c303b61a1f7e9097a3693a73e Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Tue, 4 Apr 2023 18:19:06 +0200 Subject: [PATCH] Set version to 0.19.2 --- CHANGELOG.md | 21 +++++++++++++++++++++ lib/spack/spack/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a37d422008a..2fc651244e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# v0.19.2 (2023-04-04) + +### Spack Bugfixes + +* Ignore global variant requirement for packages that do not define it (#35037) +* Compiler wrapper: improved parsing of linker arguments (#35929, #35912) +* Do not detect apple-clang as cce on macOS (#35974) +* Views: fix support for optional Python extensions (#35489) +* Views: fix issue where Python executable gets symlinked instead of copied (#34661) +* Fix a bug where tests were not added when concretizing together (#35290) +* Compiler flags: fix clang/apple-clang c/c++ standard flags (#35062) +* Increase db timeout from 3s to 60s to improve stability of parallel installs (#35517) +* Buildcache: improve error handling in downloads (#35568) +* Module files for packages installed from buildcache have long placeholder paths abbreviated in configure args section (#36611) +* Reduce verbosity of error messages regarding non-existing module files (#35502) +* Ensure file with build environment variables is truncated when writing to it (#35673) +* `spack config update` now works on active environments (#36542) +* Fix an issue where spack.yaml got reformatted incorrectly (#36698) +* Packages UPC++ and GASNet-EX were updated (#36629) + + # v0.19.1 (2023-02-07) ### Spack Bugfixes diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index 404f3c3541c..d87dd98cb6f 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -4,7 +4,7 @@ # SPDX-License-Identifier: (Apache-2.0 OR MIT) #: PEP440 canonical ... string -__version__ = "0.19.2.dev0" +__version__ = "0.19.2" spack_version = __version__