From 9fc7b99ea32daaf3019416e0a42141b23923fd82 Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Mon, 30 Sep 2024 22:05:50 +0200 Subject: [PATCH] release libmamba 2.0.1, libmambapy 2.0.1, micromamba 2.0.1 --- CHANGELOG.md | 17 +++++++++++++++++ libmamba/CHANGELOG.md | 14 ++++++++++++++ libmamba/include/mamba/version.hpp | 2 +- libmambapy/CHANGELOG.md | 8 ++++++++ libmambapy/src/libmambapy/version.py | 2 +- micromamba/CHANGELOG.md | 13 +++++++++++++ micromamba/src/version.hpp | 2 +- 7 files changed, 55 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5ec295a93..fc798e6efd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +2024.09.30 +========== + +Releases: libmamba 2.0.1, libmambapy 2.0.1, micromamba 2.0.1 + +Bug fixes: + +- [libmamba] Fixed channel output in umamba list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3486 +- [libmamba, micromamba] --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485 +- [libmamba, micromamba] fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483 +- [libmamba] Fix micromamba activate on Windows by @JohanMabille in https://github.com/mamba-org/mamba/pull/3484 +- [micromamba] Added --copy flag to create and install commands by @JohanMabille in https://github.com/mamba-org/mamba/pull/3474 + +CI fixes and doc: + +- [all] doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471 + 2024.09.25 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index b9d8faad56..96014d93b7 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,17 @@ +libmamba 2.0.1 (September 30, 2024) +=================================== + +Bug fixes: + +- Fixed channel output in umamba list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3486 +- --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485 +- fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483 +- Fix micromamba activate on Windows by @JohanMabille in https://github.com/mamba-org/mamba/pull/3484 + +CI fixes and doc: + +- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471 + libmamba 2.0.0 (September 25, 2024) =================================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index bba4d8c026..6412d77150 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -12,7 +12,7 @@ #define LIBMAMBA_VERSION_MAJOR 2 #define LIBMAMBA_VERSION_MINOR 0 -#define LIBMAMBA_VERSION_PATCH 0 +#define LIBMAMBA_VERSION_PATCH 1 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 82f31ce078..028ac1bfa3 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,11 @@ +libmambapy 2.0.1 (September 30, 2024) +===================================== + + +CI fixes and doc: + +- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471 + libmambapy 2.0.0 (September 25, 2024) ===================================== diff --git a/libmambapy/src/libmambapy/version.py b/libmambapy/src/libmambapy/version.py index f65c5ee9e4..b6c59f463b 100644 --- a/libmambapy/src/libmambapy/version.py +++ b/libmambapy/src/libmambapy/version.py @@ -1,2 +1,2 @@ -version_info = ("2", "0", "0") +version_info = ("2", "0", "1") __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 423e9bd1a6..65c9327557 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,16 @@ +micromamba 2.0.1 (September 30, 2024) +===================================== + +Bug fixes: + +- --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485 +- fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483 +- Added --copy flag to create and install commands by @JohanMabille in https://github.com/mamba-org/mamba/pull/3474 + +CI fixes and doc: + +- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471 + micromamba 2.0.0 (September 25, 2024) ===================================== diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index 2658edab30..60ff70a4cc 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -12,7 +12,7 @@ #define UMAMBA_VERSION_MAJOR 2 #define UMAMBA_VERSION_MINOR 0 -#define UMAMBA_VERSION_PATCH 0 +#define UMAMBA_VERSION_PATCH 1 // Binary version #define UMAMBA_BINARY_CURRENT 1