diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ba098f24..761b94e27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +2022.05.20 +========== + +Releases: libmamba 0.23.3, libmambapy 0.23.3, mamba 0.23.3, micromamba 0.23.3 + +Bug fixes +- [micromamba] Fix summing behavior of `-v` flags #1690 +- [all] fix curl callback to not exit anymore but report a proper error #1684 +- [micromamba] fix up explicit installation by using proper variables #1677 +- [libmamba] fix channel prefix test (thanks @jonashaag) #1674 +- [mamba] fix strict priority for `mamba create env ...` #1688 + +Improvements +- [micromamba] make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686 +- [libmamba] various Windows / CMake improvements #1683 +- [libmamba] various warnings fixed on Windows and Unix #1683, 1691 +- [libmamba] fix yaml-cpp linkage #1678 + + 2022.05.12 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index f691be57a..71d593d6c 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,17 @@ +libmamba 0.23.3 (May 20, 2022) +============================== + +Bug fixes + +- fix curl callback to not exit anymore but report a proper error #1684 +- fix channel prefix test (thanks @jonashaag) #1674 + +Improvements + +- various Windows / CMake improvements #1683 +- various warnings fixed on Windows and Unix #1683, 1691 +- fix yaml-cpp linkage #1678 + libmamba 0.23.1 (May 11, 2022) ============================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index 5be17da6e..7d8994a22 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -12,7 +12,7 @@ #define LIBMAMBA_VERSION_MAJOR 0 #define LIBMAMBA_VERSION_MINOR 23 -#define LIBMAMBA_VERSION_PATCH 1 +#define LIBMAMBA_VERSION_PATCH 3 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 2f0dfd2fd..dfba62eff 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,10 @@ +libmambapy 0.23.3 (May 20, 2022) +================================ + +Bug fixes + +- fix curl callback to not exit anymore but report a proper error #1684 + libmambapy 0.23.1 (May 11, 2022) ================================ diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index 24d191ed4..b564eb75b 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 23, 1) +version_info = (0, 23, 3) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index dbada1fee..ca993a644 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -1,3 +1,11 @@ +mamba 0.23.3 (May 20, 2022) +=========================== + +Bug fixes + +- fix curl callback to not exit anymore but report a proper error #1684 +- fix strict priority for `mamba create env ...` #1688 + mamba 0.23.1 (May 11, 2022) =========================== diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index 24d191ed4..b564eb75b 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 23, 1) +version_info = (0, 23, 3) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 119069da1..188fd4bc0 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,16 @@ +micromamba 0.23.3 (May 20, 2022) +================================ + +Bug fixes + +- Fix summing behavior of `-v` flags #1690 +- fix curl callback to not exit anymore but report a proper error #1684 +- fix up explicit installation by using proper variables #1677 + +Improvements + +- make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686 + micromamba 0.23.2 (May 12, 2022) ================================ diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index ececc79d1..b239178c8 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -12,7 +12,7 @@ #define UMAMBA_VERSION_MAJOR 0 #define UMAMBA_VERSION_MINOR 23 -#define UMAMBA_VERSION_PATCH 2 +#define UMAMBA_VERSION_PATCH 3 // Binary version #define UMAMBA_BINARY_CURRENT 1