From ba6cb62df8d22beb2b50ad5e9869e2ba9eb3c923 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels <me@harmenstoppels.nl> Date: Mon, 18 Nov 2024 10:10:31 +0100 Subject: [PATCH] Set version to v0.22.3 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ lib/spack/spack/__init__.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a52eeac52..f661694eb86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# v0.22.3 (2024-11-18) + +## Bugfixes +- Forward compatibility with Python 3.13 (#46775, #46983, #47035, #47175) +- `archspec` was updated to v0.2.5 (#46503, #46958) +- Fix path to Spack in `spack env depfile` makefile (#46966) +- Fix `glibc` detection in Chinese locales (#47434) +- Fix pickle round-trip of specs propagating variants (#47351) +- Fix a bug where concurrent spack install commands would not always update explicits correctly + (#47358) +- Fix a bug where autopush would run before all post install hooks modifying the install prefix + had run (#47329) +- Fix `spack find -u` (#47102) +- Fix a bug where sometimes the wrong Python interpreter was used for build dependencies such as + `py-setuptools` (#46980) +- Fix default config errors found by `spack audit externals` (#47308) +- Fix duplicate printing of external roots in installer (#44917) +- Fix modules schema in `compilers.yaml` (#47197) +- Reduce the size of generated YAML for Gitlab CI (#44995) +- Handle missing metadata file gracefully in bootstrap (#47278) +- Show underlying errors on fetch failure (#45714) +- Recognize `.` and `..` as paths instead of names in buildcache commands (#47105) +- Documentation and style (#46991, #47107, #47110, #47111, #47346, #47307, #47309, #47328, #47160, + #47402, #47557, #46709, #47080) +- Tests and CI fixes (#47165, #46711) + +## Package updates +- ffmpeg: fix hash of patch (#45574) + # v0.22.2 (2024-09-21) ## Bugfixes diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index 79228849531..9ebbcf0d990 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 <major>.<minor>.<micro>.<devN> string -__version__ = "0.22.3.dev0" +__version__ = "0.22.3" spack_version = __version__ -- GitLab