From 91c41db53394f8425094554dfabc301bc040337a Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Mon, 30 Oct 2023 22:17:27 +0100 Subject: [PATCH] release libmamba 1.5.3, libmambapy 1.5.3, mamba 1.5.3, micromamba 1.5.3 --- CHANGELOG.md | 18 ++++++++++++++++++ libmamba/CHANGELOG.md | 15 +++++++++++++++ libmamba/include/mamba/version.hpp | 2 +- libmambapy/CHANGELOG.md | 11 +++++++++++ libmambapy/libmambapy/_version.py | 2 +- mamba/CHANGELOG.md | 10 ++++++++++ mamba/mamba/_version.py | 2 +- micromamba/CHANGELOG.md | 6 ++++++ micromamba/src/version.hpp | 2 +- 9 files changed, 64 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cce9376e58..ff6d548246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +2023.10.30 +========== + +Releases: libmamba 1.5.3, libmambapy 1.5.3, mamba 1.5.3, micromamba 1.5.3 + +Enhancement: + +- [libmamba] Backport #2927: Allow defaults::* spec by @isuruf in https://github.com/mamba-org/mamba/pull/2936 +- [libmamba] Backport #2921: return architecture levels for micromamba by @isuruf in https://github.com/mamba-org/mamba/pull/2936 + +Bug fixes: + +- [libmamba] Backport #2926: Fix channels with slashes regression by @isuruf in https://github.com/mamba-org/mamba/pull/2936 +- [libmambapy] Fix ctrl-c handling issues in libmambapy by @jaimergp in https://github.com/mamba-org/mamba/pull/2946 +- [libmamba, libmambapy, mamba] Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951 + +CI fixes and doc: + 2023.10.16 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index 0f16181f64..3a600b5983 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,18 @@ +libmamba 1.5.3 (October 30, 2023) +================================= + +Enhancement: + +- Backport #2927: Allow defaults::* spec by @isuruf in https://github.com/mamba-org/mamba/pull/2936 +- Backport #2921: return architecture levels for micromamba by @isuruf in https://github.com/mamba-org/mamba/pull/2936 + +Bug fixes: + +- Backport #2926: Fix channels with slashes regression by @isuruf in https://github.com/mamba-org/mamba/pull/2936 +- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951 + +CI fixes and doc: + libmamba 1.5.2 (October 16, 2023) ================================= diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index 84450e18fc..4d6527ec38 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -12,7 +12,7 @@ #define LIBMAMBA_VERSION_MAJOR 1 #define LIBMAMBA_VERSION_MINOR 5 -#define LIBMAMBA_VERSION_PATCH 2 +#define LIBMAMBA_VERSION_PATCH 3 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 29b3d738c0..4690bc7fbf 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,14 @@ +libmambapy 1.5.3 (October 30, 2023) +=================================== + + +Bug fixes: + +- Fix ctrl-c handling issues in libmambapy by @jaimergp in https://github.com/mamba-org/mamba/pull/2946 +- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951 + +CI fixes and doc: + libmambapy 1.5.2 (October 16, 2023) =================================== diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index 38be64cc2a..ba554310fe 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 2) +version_info = (1, 5, 3) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index 4e5d783460..7e729383eb 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -1,3 +1,13 @@ +mamba 1.5.3 (October 30, 2023) +============================== + + +Bug fixes: + +- Backport #2949: Parse remote_connect_timeout_secs as a double by @jjerphan in https://github.com/mamba-org/mamba/pull/2951 + +CI fixes and doc: + mamba 1.5.2 (October 16, 2023) ============================== diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index 38be64cc2a..ba554310fe 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 2) +version_info = (1, 5, 3) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index e162fc697a..db51c49a4d 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,9 @@ +micromamba 1.5.3 (October 30, 2023) +=================================== + + +CI fixes and doc: + micromamba 1.5.2 (October 16, 2023) =================================== diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index 8e3863fd81..f3f983ad39 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -12,7 +12,7 @@ #define UMAMBA_VERSION_MAJOR 1 #define UMAMBA_VERSION_MINOR 5 -#define UMAMBA_VERSION_PATCH 2 +#define UMAMBA_VERSION_PATCH 3 // Binary version #define UMAMBA_BINARY_CURRENT 1