Set version to v0.22.1

This commit is contained in:
Harmen Stoppels 2024-06-28 13:50:23 +02:00
parent ef2aa2f5f5
commit d66dce2d66
2 changed files with 89 additions and 48 deletions

View file

@ -1,3 +1,40 @@
# v0.22.1 (2024-07-04)
## Bugfixes
- Fix reuse of externals on Linux (#44316)
- Ensure parent gcc-runtime version >= child (#44834, #44870)
- Ensure the latest gcc-runtime is rpath'ed when multiple exist among link deps (#44219)
- Improve version detection of glibc (#44154)
- Improve heuristics for solver (#44893, #44976, #45023)
- Make strong preferences override reuse (#44373)
- Reduce verbosity when C compiler is missing (#44182)
- Make missing ccache executable an error when required (#44740)
- Make every environment view containing `python` a `venv` (#44382)
- Fix external detection for compilers with os but no target (#44156)
- Fix version optimization for roots (#44272)
- Handle common implementations of pagination of tags in OCI build caches (#43136)
- Apply fetched patches to develop specs (#44950)
- Avoid Windows wrappers for filesystem utilities on non-Windows (#44126)
- Fix issue with long filenames in build caches on Windows (#43851)
- Fix formatting issue in `spack audit` (#45045)
- CI fixes (#44582, #43965, #43967, #44279, #44213)
## Package updates
- protobuf: fix 3.4:3.21 patch checksum (#44443)
- protobuf: update hash for patch needed when="@3.4:3.21" (#44210)
- git: bump v2.39 to 2.45; deprecate unsafe versions (#44248)
- gcc: use -rpath {rpath_dir} not -rpath={rpath dir} (#44315)
- Remove mesa18 and libosmesa (#44264)
- Enforce consistency of `gl` providers (#44307)
- Require libiconv for iconv (#44335, #45026).
Notice that glibc/musl also provide iconv, but are not guaranteed to be
complete. Set `packages:iconv:require:[glibc]` to restore the old behavior.
- py-matplotlib: qualify when to do a post install (#44191)
- rust: fix v1.78.0 instructions (#44127)
- suite-sparse: improve setting of the `libs` property (#44214)
- netlib-lapack: provide blas and lapack together (#44981)
# v0.22.0 (2024-05-12) # v0.22.0 (2024-05-12)
`v0.22.0` is a major feature release. `v0.22.0` is a major feature release.
@ -82,21 +119,22 @@
spack install zlib cflags=\"-O2 -g\" spack install zlib cflags=\"-O2 -g\"
``` ```
That will now result in an error. The correct format (which you probably expected in That will now result in an error, but you can now write what you probably expected
the first place) is: to work in the first place:
``` ```
spack install zlib cflags="-O2 -g" spack install zlib cflags="-O2 -g"
``` ```
Quoted can also now include special characters, enabling commands like: Quoted can also now include special characters, so you can supply flags like:
``` ```
spack install zlib ldflags='-Wl,-rpath=$ORIGIN/_libs' spack intall zlib ldflags='-Wl,-rpath=$ORIGIN/_libs'
``` ```
To reduce ambiguity in parsing, do *not* put spaces around `=` and `==` in To reduce ambiguity in parsing, we now require that you *not* put spaces around `=`
flags or variants, as this will now result in an error: and `==` when for flags or variants. This would not have broken before but will now
result in an error:
``` ```
spack install zlib cflags = "-O2 -g" spack install zlib cflags = "-O2 -g"
@ -162,7 +200,7 @@
include: ["openmpi"] include: ["openmpi"]
``` ```
6. **Add new `redistribute()` directive** 6. **New `redistribute()` directive**
Some packages can't be redistributed in source or binary form. We need an explicit Some packages can't be redistributed in source or binary form. We need an explicit
way to say that in a package. way to say that in a package.
@ -255,56 +293,59 @@
## New commands, options, and directives ## New commands, options, and directives
* Allow packages to be pushed to build cache after install from source (#42423) * Allow packages to be pushed to build cache after install from source (#42423)
* `spack develop`: stage build artifacts in same root as non-dev builds #41373 * `spack develop`: stage build artifacts in same root as non-dev builds #41373
* Don't delete `spack develop` build artifacts after install (#43424) * Don't delete `spack develop` build artifacts after install (#43424)
* `spack find`: add options for local/upstream only (#42999) * `spack find`: add options for local/upstream only (#42999)
* `spack logs`: print log files for packages (either partially built or installed) (#42202) * `spack logs`: print log files for packages (either partially built or installed) (#42202)
* `patch`: support reversing patches (#43040) * `patch`: support reversing patches (#43040)
* `develop`: Add -b/--build-directory option to set build_directory package attribute (#39606) * `develop`: Add -b/--build-directory option to set build_directory package attribute (#39606)
* `spack list`: add `--namesapce` / `--repo` option (#41948) * `spack list`: add `--namesapce` / `--repo` option (#41948)
* directives: add `checked_by` field to `license()`, add some license checks * directives: add `checked_by` field to `license()`, add some license checks
* `spack gc`: add options for environments and build dependencies (#41731) * `spack gc`: add options for environments and build dependencies (#41731)
* Add `--create` to `spack env activate` (#40896) * Add `--create` to `spack env activate` (#40896)
## Performance improvements ## Performance improvements
* environment.py: fix excessive re-reads (#43746) * environment.py: fix excessive re-reads (#43746)
* ruamel yaml: fix quadratic complexity bug (#43745) * ruamel yaml: fix quadratic complexity bug (#43745)
* Refactor to improve `spec format` speed (#43712) * Refactor to improve `spec format` speed (#43712)
* Do not acquire a write lock on the env post install if no views (#43505) * Do not acquire a write lock on the env post install if no views (#43505)
* asp.py: fewer calls to `spec.copy()` (#43715) * asp.py: fewer calls to `spec.copy()` (#43715)
* spec.py: early return in `__str__` * spec.py: early return in `__str__`
* avoid `jinja2` import at startup unless needed (#43237) * avoid `jinja2` import at startup unless needed (#43237)
## Other new features of note ## Other new features of note
* `archspec`: update to `v0.2.4`: support for Windows, bugfixes for `neoverse-v1` and * `archspec`: update to `v0.2.4`: support for Windows, bugfixes for `neoverse-v1` and
`neoverse-v2` detection. `neoverse-v2` detection.
* `spack config get`/`blame`: with no args, show entire config * `spack config get`/`blame`: with no args, show entire config
* `spack env create <env>`: dir if dir-like (#44024) * `spack env create <env>`: dir if dir-like (#44024)
* ASP-based solver: update os compatibility for macOS (#43862) * ASP-based solver: update os compatibility for macOS (#43862)
* Add handling of custom ssl certs in urllib ops (#42953) * Add handling of custom ssl certs in urllib ops (#42953)
* Add ability to rename environments (#43296) * Add ability to rename environments (#43296)
* Add config option and compiler support to reuse across OS's (#42693) * Add config option and compiler support to reuse across OS's (#42693)
* Support for prereleases (#43140) * Support for prereleases (#43140)
* Only reuse externals when configured (#41707) * Only reuse externals when configured (#41707)
* Environments: Add support for including views (#42250) * Environments: Add support for including views (#42250)
* Make signed/unsigned a mirror configuration property (#41507)
## Binary caches
* Build cache: make signed/unsigned a mirror property (#41507)
* tools stack
## Removals, deprecations, and syntax changes ## Removals, deprecations, and syntax changes
* remove `dpcpp` compiler and package (#43418) * remove `dpcpp` compiler and package (#43418)
* `spack load`: remove --only argument (#42120) * spack load: remove --only argument (#42120)
## Notable Bugfixes ## Notable Bugfixes
* repo.py: drop deleted packages from provider cache (#43779) * repo.py: drop deleted packages from provider cache (#43779)
* Allow `+` in module file names (#41999) * Allow `+` in module file names (#41999)
* `cmd/python`: use runpy to allow multiprocessing in scripts (#41789) * `cmd/python`: use runpy to allow multiprocessing in scripts (#41789)
* Show extension commands with spack -h (#41726) * Show extension commands with spack -h (#41726)
* Support environment variable expansion inside module projections (#42917) * Support environment variable expansion inside module projections (#42917)
* Alert user to failed concretizations (#42655) * Alert user to failed concretizations (#42655)
* shell: fix zsh color formatting for PS1 in environments (#39497) * shell: fix zsh color formatting for PS1 in environments (#39497)
* spack mirror create --all: include patches (#41579) * spack mirror create --all: include patches (#41579)
## Spack community stats ## Spack community stats

View file

@ -4,7 +4,7 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
#: PEP440 canonical <major>.<minor>.<micro>.<devN> string #: PEP440 canonical <major>.<minor>.<micro>.<devN> string
__version__ = "0.22.1.dev0" __version__ = "0.22.1"
spack_version = __version__ spack_version = __version__