From 282b88b4b8f139cfa660c233807ed6d23a12d064 Mon Sep 17 00:00:00 2001 From: Julien Jerphanion Date: Fri, 22 Nov 2024 09:03:58 +0100 Subject: [PATCH] release libmamba 1.5.11, libmambapy 1.5.11, mamba 1.5.11, micromamba 1.5.11 --- CHANGELOG.md | 17 +++++++++++++++++ libmamba/CHANGELOG.md | 13 +++++++++++++ libmamba/include/mamba/version.hpp | 2 +- libmambapy/CHANGELOG.md | 13 +++++++++++++ libmambapy/libmambapy/_version.py | 2 +- mamba/CHANGELOG.md | 13 +++++++++++++ mamba/mamba/_version.py | 2 +- micromamba/CHANGELOG.md | 15 +++++++++++++++ micromamba/src/version.hpp | 2 +- 9 files changed, 75 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2e8bb1a1..0719fbc27f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +2024.11.22 +========== + +Releases: libmamba 1.5.11, libmambapy 1.5.11, mamba 1.5.11, micromamba 1.5.11 + +Bug fixes: + +- [libmamba, libmambapy, mamba, micromamba] Backport of #3580: Skip misformatted configuration files by @jjerphan in https://github.com/mamba-org/mamba/pull/3593 +- [micromamba] Add missing dependencies to micromamba's environment specification by @jjerphan in https://github.com/mamba-org/mamba/pull/3603 +- [micromamba] Backport of #3436: Fixed micromamba static build after cctools and ld64 upgrade on conda-forge by @Hind-M in https://github.com/mamba-org/mamba/pull/3465 +- [libmamba, libmambapy, mamba, micromamba] Ignore SOLV writing exceptions by @jaimergp in https://github.com/mamba-org/mamba/pull/3313 +- [libmamba, libmambapy, mamba, micromamba] Apply feedstock patches by @Hind-M in https://github.com/mamba-org/mamba/pull/3466 + +CI: + +- [libmamba, libmambapy, mamba, micromamba] Upgraded to setup-micromamba v2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3504 + 2024.09.20 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index c9111bb1d7..ee1d54009a 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,16 @@ +libmamba 1.5.11 (November 21, 2024) +=================================== + +Bug fixes: + +- Backport of #3580: Skip misformatted configuration files by @jjerphan in https://github.com/mamba-org/mamba/pull/3593 +- Ignore SOLV writing exceptions by @jaimergp in https://github.com/mamba-org/mamba/pull/3313 +- Apply feedstock patches by @Hind-M in https://github.com/mamba-org/mamba/pull/3466 + +CI: + +- Upgraded to setup-micromamba v2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3504 + libmamba 1.5.10 (September 20, 2024) ==================================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index c6dd48927d..892bcf592c 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 10 +#define LIBMAMBA_VERSION_PATCH 11 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index ef139a49a8..6440ba8edc 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,16 @@ +libmambapy 1.5.11 (November 21, 2024) +===================================== + +Bug fixes: + +- Backport of #3580: Skip misformatted configuration files by @jjerphan in https://github.com/mamba-org/mamba/pull/3593 +- Ignore SOLV writing exceptions by @jaimergp in https://github.com/mamba-org/mamba/pull/3313 +- Apply feedstock patches by @Hind-M in https://github.com/mamba-org/mamba/pull/3466 + +CI: + +- Upgraded to setup-micromamba v2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3504 + libmambapy 1.5.10 (September 20, 2024) ====================================== diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index 7a0664e868..649846c381 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 10) +version_info = (1, 5, 11) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index 7536138ef1..5be5ca17ca 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -1,3 +1,16 @@ +mamba 1.5.11 (November 21, 2024) +================================ + +Bug fixes: + +- Backport of #3580: Skip misformatted configuration files by @jjerphan in https://github.com/mamba-org/mamba/pull/3593 +- Ignore SOLV writing exceptions by @jaimergp in https://github.com/mamba-org/mamba/pull/3313 +- Apply feedstock patches by @Hind-M in https://github.com/mamba-org/mamba/pull/3466 + +CI: + +- Upgraded to setup-micromamba v2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3504 + mamba 1.5.10 (September 20, 2024) ================================= diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index 7a0664e868..649846c381 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 5, 10) +version_info = (1, 5, 11) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 42018934df..0018ae51f4 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,18 @@ +micromamba 1.5.11 (November 21, 2024) +===================================== + +Bug fixes: + +- Backport of #3580: Skip misformatted configuration files by @jjerphan in https://github.com/mamba-org/mamba/pull/3593 +- Add missing dependencies to micromamba's environment specification by @jjerphan in https://github.com/mamba-org/mamba/pull/3603 +- Backport of #3436: Fixed micromamba static build after cctools and ld64 upgrade on conda-forge by @Hind-M in https://github.com/mamba-org/mamba/pull/3465 +- Ignore SOLV writing exceptions by @jaimergp in https://github.com/mamba-org/mamba/pull/3313 +- Apply feedstock patches by @Hind-M in https://github.com/mamba-org/mamba/pull/3466 + +CI: + +- Upgraded to setup-micromamba v2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3504 + micromamba 1.5.10 (September 20, 2024) ====================================== diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index ff0712e8c4..919d7ef4aa 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 10 +#define UMAMBA_VERSION_PATCH 11 // Binary version #define UMAMBA_BINARY_CURRENT 1