release libmamba 2.0.6, micromamba 2.0.6, libmambapy 2.0.6

This commit is contained in:
Julien Jerphanion 2025-02-04 15:28:34 +01:00
parent 451eaa7ade
commit 09f87f1031
No known key found for this signature in database
GPG Key ID: 56B690A97C2E35B8
7 changed files with 222 additions and 7 deletions

View File

@ -1,5 +1,63 @@
# 2025.02.04
Release: 2.0.6 (libmamba, mamba, micromamba, libmambapy)
Enhancements:
- [all] Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
- [all] Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
- [all] add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- [all] Correctly populate lists of `MatchSpec` in `MTransaction`'s history by @Hind-M in https://github.com/mamba-org/mamba/pull/3724
- [all] Honour `CONDA_ENVS_PATH` again by @jjerphan in https://github.com/mamba-org/mamba/pull/3725
- [all] Improve CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3700
- [all] Support installation using explicit url by @Hind-M in https://github.com/mamba-org/mamba/pull/3710
- [all] Improve display of environment activation message by @Hind-M in https://github.com/mamba-org/mamba/pull/3715
- [all] Adapt warnings shown when several channels are used by @jjerphan in https://github.com/mamba-org/mamba/pull/3720
- [all] Add a hint on cache corruption by @jjerphan in https://github.com/mamba-org/mamba/pull/3736
- [all] Support more condarc paths by @SandrineP in https://github.com/mamba-org/mamba/pull/3695
- [all] Always add `root_prefix/envs` in `envs_dirs` by @Hind-M in https://github.com/mamba-org/mamba/pull/3692
- [mamba] Generate and install `etc/profile.d/mamba.sh` by @jjerphan in https://github.com/mamba-org/mamba/pull/3723
- [mamba] Add `no-pip` flag to `list` command by @Hind-M in https://github.com/mamba-org/mamba/pull/3696
- [mamba, micromamba] Options args enhancement by @Hind-M in https://github.com/mamba-org/mamba/pull/3722
- [all] Support globs in `MatchSpec` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
- [all] Don't encode URLs for `mamba env export --explicit` by @maresb in https://github.com/mamba-org/mamba/pull/3745
- [all] Handle `git+https` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
- [all] Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
- [all] Use CA certificates from `conda-forge::ca-certificates` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
- [all] Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
- [all] Fix dependency and `subdir` in repoquery `whoneeds` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
- [all] Use `LOG_DEBUG` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
- [all] Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
- [all] Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
- [all] Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
- [all] Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
- [all] Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
- [mamba] Warn about future removal of `etc/profile.d/mamba.sh` by @jjerphan in https://github.com/mamba-org/mamba/pull/3788
- [all] Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- [all] Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
CI fixes and doc:
- [all] Use a portable web request for Windows by @jjerphan in https://github.com/mamba-org/mamba/pull/3704
- [all] Add prettier pre-commit hook by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3663
- [all] Document slight differences for environment export by @jjerphan in https://github.com/mamba-org/mamba/pull/3697
- [all] Unique Release Tag by @Klaim in https://github.com/mamba-org/mamba/pull/3732
- [all] Update Linux installation script for Nushell by @deephbz in https://github.com/mamba-org/mamba/pull/3721
- [all] `update_changelog.py` now can also take input as cli parameters by @Klaim in https://github.com/mamba-org/mamba/pull/3731
Maintenance:
- [all] `list` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
- [all] Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
- [all] Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
- [all] Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
- [all] Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
# 2025.02.04
Release: 2.0.6.rc3 (libmamba, mamba, micromamba, libmambapy)
Enhancement:

View File

@ -1,3 +1,55 @@
# libmamba 2.0.6 (February 04, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
- Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Correctly populate lists of `MatchSpec` in `MTransaction`'s history by @Hind-M in https://github.com/mamba-org/mamba/pull/3724
- Honour `CONDA_ENVS_PATH` again by @jjerphan in https://github.com/mamba-org/mamba/pull/3725
- Improve CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3700
- Support installation using explicit url by @Hind-M in https://github.com/mamba-org/mamba/pull/3710
- Improve display of environment activation message by @Hind-M in https://github.com/mamba-org/mamba/pull/3715
- Adapt warnings shown when several channels are used by @jjerphan in https://github.com/mamba-org/mamba/pull/3720
- Add a hint on cache corruption by @jjerphan in https://github.com/mamba-org/mamba/pull/3736
- Support more condarc paths by @SandrineP in https://github.com/mamba-org/mamba/pull/3695
- Always add `root_prefix/envs` in `envs_dirs` by @Hind-M in https://github.com/mamba-org/mamba/pull/3692
- Support globs in `MatchSpec` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
- Don't encode URLs for `mamba env export --explicit` by @maresb in https://github.com/mamba-org/mamba/pull/3745
- Handle `git+https` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
- Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
- Use CA certificates from `conda-forge::ca-certificates` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
- Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
- Fix dependency and `subdir` in repoquery `whoneeds` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
- Use `LOG_DEBUG` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
- Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
- Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
- Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
- Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
CI fixes and doc:
- Use a portable web request for Windows by @jjerphan in https://github.com/mamba-org/mamba/pull/3704
- Add prettier pre-commit hook by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3663
- Document slight differences for environment export by @jjerphan in https://github.com/mamba-org/mamba/pull/3697
- Unique Release Tag by @Klaim in https://github.com/mamba-org/mamba/pull/3732
- Update Linux installation script for Nushell by @deephbz in https://github.com/mamba-org/mamba/pull/3721
- `update_changelog.py` now can also take input as cli parameters by @Klaim in https://github.com/mamba-org/mamba/pull/3731
Maintenance:
- `list` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
- Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
- Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
- Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
- Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
# libmamba 2.0.6.rc3 (February 04, 2025)
Enhancement:

View File

@ -13,12 +13,12 @@
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 0
#define LIBMAMBA_VERSION_PATCH 6
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc3"
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define LIBMAMBA_VERSION_STRING "2.0.6.rc3"
#define LIBMAMBA_VERSION_STRING "2.0.6"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,55 @@
# libmambapy 2.0.6 (February 04, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
- Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Correctly populate lists of `MatchSpec` in `MTransaction`'s history by @Hind-M in https://github.com/mamba-org/mamba/pull/3724
- Honour `CONDA_ENVS_PATH` again by @jjerphan in https://github.com/mamba-org/mamba/pull/3725
- Improve CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3700
- Support installation using explicit url by @Hind-M in https://github.com/mamba-org/mamba/pull/3710
- Improve display of environment activation message by @Hind-M in https://github.com/mamba-org/mamba/pull/3715
- Adapt warnings shown when several channels are used by @jjerphan in https://github.com/mamba-org/mamba/pull/3720
- Add a hint on cache corruption by @jjerphan in https://github.com/mamba-org/mamba/pull/3736
- Support more condarc paths by @SandrineP in https://github.com/mamba-org/mamba/pull/3695
- Always add `root_prefix/envs` in `envs_dirs` by @Hind-M in https://github.com/mamba-org/mamba/pull/3692
- Support globs in `MatchSpec` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
- Don't encode URLs for `mamba env export --explicit` by @maresb in https://github.com/mamba-org/mamba/pull/3745
- Handle `git+https` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
- Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
- Use CA certificates from `conda-forge::ca-certificates` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
- Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
- Fix dependency and `subdir` in repoquery `whoneeds` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
- Use `LOG_DEBUG` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
- Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
- Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
- Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
- Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
CI fixes and doc:
- Use a portable web request for Windows by @jjerphan in https://github.com/mamba-org/mamba/pull/3704
- Add prettier pre-commit hook by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3663
- Document slight differences for environment export by @jjerphan in https://github.com/mamba-org/mamba/pull/3697
- Unique Release Tag by @Klaim in https://github.com/mamba-org/mamba/pull/3732
- Update Linux installation script for Nushell by @deephbz in https://github.com/mamba-org/mamba/pull/3721
- `update_changelog.py` now can also take input as cli parameters by @Klaim in https://github.com/mamba-org/mamba/pull/3731
Maintenance:
- `list` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
- Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
- Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
- Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
- Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
# libmambapy 2.0.6.rc3 (February 04, 2025)
Enhancement:

View File

@ -1,5 +1,5 @@
version_info = ("2", "0", "6")
version_prerelease = "rc3"
version_prerelease = ""
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":
__version__ = f"{__version__}.{version_prerelease}"

View File

@ -1,3 +1,56 @@
# micromamba 2.0.6 (February 04, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
- Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Correctly populate lists of `MatchSpec` in `MTransaction`'s history by @Hind-M in https://github.com/mamba-org/mamba/pull/3724
- Honour `CONDA_ENVS_PATH` again by @jjerphan in https://github.com/mamba-org/mamba/pull/3725
- Improve CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3700
- Support installation using explicit url by @Hind-M in https://github.com/mamba-org/mamba/pull/3710
- Improve display of environment activation message by @Hind-M in https://github.com/mamba-org/mamba/pull/3715
- Adapt warnings shown when several channels are used by @jjerphan in https://github.com/mamba-org/mamba/pull/3720
- Add a hint on cache corruption by @jjerphan in https://github.com/mamba-org/mamba/pull/3736
- Support more condarc paths by @SandrineP in https://github.com/mamba-org/mamba/pull/3695
- Always add `root_prefix/envs` in `envs_dirs` by @Hind-M in https://github.com/mamba-org/mamba/pull/3692
- Options args enhancement by @Hind-M in https://github.com/mamba-org/mamba/pull/3722
- Support globs in `MatchSpec` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
- Don't encode URLs for `mamba env export --explicit` by @maresb in https://github.com/mamba-org/mamba/pull/3745
- Handle `git+https` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
- Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
- Use CA certificates from `conda-forge::ca-certificates` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
- Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
- Fix dependency and `subdir` in repoquery `whoneeds` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
- Use `LOG_DEBUG` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
- Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
- Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
- Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
- Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
CI fixes and doc:
- Use a portable web request for Windows by @jjerphan in https://github.com/mamba-org/mamba/pull/3704
- Add prettier pre-commit hook by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3663
- Document slight differences for environment export by @jjerphan in https://github.com/mamba-org/mamba/pull/3697
- Unique Release Tag by @Klaim in https://github.com/mamba-org/mamba/pull/3732
- Update Linux installation script for Nushell by @deephbz in https://github.com/mamba-org/mamba/pull/3721
- `update_changelog.py` now can also take input as cli parameters by @Klaim in https://github.com/mamba-org/mamba/pull/3731
Maintenance:
- `list` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
- Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
- Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
- Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
- Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
# micromamba 2.0.6.rc3 (February 04, 2025)
Enhancement:

View File

@ -13,12 +13,12 @@
#define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 0
#define UMAMBA_VERSION_PATCH 6
#define UMAMBA_VERSION_IS_PRERELEASE 1
#define UMAMBA_VERSION_IS_PRERELEASE 0
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "rc3"
#define UMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define UMAMBA_VERSION_STRING "2.0.6.rc3"
#define UMAMBA_VERSION_STRING "2.0.6"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)