diff --git a/CHANGELOG.md b/CHANGELOG.md index 516b99a48..b539b9718 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index c6f967392..29ce0cd59 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -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: diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index 818d0cfbb..db851b41e 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -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) diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 62443f872..e08128f86 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -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: diff --git a/libmambapy/src/libmambapy/version.py b/libmambapy/src/libmambapy/version.py index 864ec9ac6..e92fd842c 100644 --- a/libmambapy/src/libmambapy/version.py +++ b/libmambapy/src/libmambapy/version.py @@ -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}" diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index c43974215..982b3f6fb 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -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: diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index e9d5be320..cca74ff7d 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -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)