release libmamba 2.0.6.rc1, micromamba 2.0.6.rc1, libmambapy 2.0.6.rc1

This commit is contained in:
Julien Jerphanion 2025-01-28 08:47:10 +01:00
parent 57a2c55826
commit 71e4545022
No known key found for this signature in database
GPG Key ID: 56B690A97C2E35B8
7 changed files with 111 additions and 5 deletions

View File

@ -1,3 +1,31 @@
# 2025.01.28
Release: 2.0.6.rc1 (libmamba, mamba, micromamba, libmambapy)
Enhancements:
- [all] Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
Bug fixes:
- [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
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.01.14
Release: 2.0.6.rc0 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,29 @@
# libmamba 2.0.6.rc1 (January 28, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
Bug fixes:
- 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
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.rc0 (January 14, 2025)
Bug fixes:

View File

@ -15,10 +15,10 @@
#define LIBMAMBA_VERSION_PATCH 6
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc0"
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc1"
#endif
#define LIBMAMBA_VERSION_STRING "2.0.6.rc0"
#define LIBMAMBA_VERSION_STRING "2.0.6.rc1"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,29 @@
# libmambapy 2.0.6.rc1 (January 28, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
Bug fixes:
- 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
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.rc0 (January 14, 2025)
Bug fixes:

View File

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

View File

@ -1,3 +1,29 @@
# micromamba 2.0.6.rc1 (January 28, 2025)
Enhancements:
- Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
Bug fixes:
- 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
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.rc0 (January 14, 2025)
Bug fixes:

View File

@ -15,10 +15,10 @@
#define UMAMBA_VERSION_PATCH 6
#define UMAMBA_VERSION_IS_PRERELEASE 1
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "rc0"
#define UMAMBA_VERSION_PRERELEASE_NAME "rc1"
#endif
#define UMAMBA_VERSION_STRING "2.0.6.rc0"
#define UMAMBA_VERSION_STRING "2.0.6.rc1"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)