release libmamba 2.3.1, micromamba 2.3.1, libmambapy 2.3.1

This commit is contained in:
Julien Jerphanion 2025-07-28 15:50:42 +02:00
parent ec62904617
commit 4185322d51
No known key found for this signature in database
GPG Key ID: 56B690A97C2E35B8
7 changed files with 84 additions and 5 deletions

View File

@ -1,3 +1,31 @@
## 2025.07.28
Release: 2.3.1 (libmamba, mamba, micromamba, libmambapy)
Enhancements:
- [libmambapy, libmamba] Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
Bug fixes:
- [libmamba, micromamba] Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
CI fixes and doc:
- [all] [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
- [all] ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
Maintenance:
- [libmamba] fix CI issues related to moving dependencies by @Klaim in <https://github.com/mamba-org/mamba/pull/4023>
- [libmamba] maint: use `synchronized_value` where we use a mutex to protect data by @Klaim in <https://github.com/mamba-org/mamba/pull/3992>
- [libmambapy] maint: handle `fmt>=11.2` by @Klaim in <https://github.com/mamba-org/mamba/pull/4001>
- [libmambapy] Handle removed `is_rgb` from `fmt 11.2.0` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3998>
- [libmamba] Replace macros used in tests for compatibility with coverage report by @jjerphan in <https://github.com/mamba-org/mamba/pull/3995>
- [libmamba] maint: fixes warnings by @Klaim in <https://github.com/mamba-org/mamba/pull/3993>
- [libmamba] `synchronized_value` by @Klaim in <https://github.com/mamba-org/mamba/pull/3984>
- [libmamba] maintenance: fixed msvc warnings about unreachable code by @Klaim in <https://github.com/mamba-org/mamba/pull/3991>
## 2025.06.16 ## 2025.06.16
Release: 2.3.0 (libmamba, mamba, micromamba, libmambapy) Release: 2.3.0 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,27 @@
## libmamba 2.3.1 (July 28, 2025)
Enhancements:
- Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
Bug fixes:
- Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
CI fixes and doc:
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
Maintenance:
- fix CI issues related to moving dependencies by @Klaim in <https://github.com/mamba-org/mamba/pull/4023>
- maint: use `synchronized_value` where we use a mutex to protect data by @Klaim in <https://github.com/mamba-org/mamba/pull/3992>
- Replace macros used in tests for compatibility with coverage report by @jjerphan in <https://github.com/mamba-org/mamba/pull/3995>
- maint: fixes warnings by @Klaim in <https://github.com/mamba-org/mamba/pull/3993>
- `synchronized_value` by @Klaim in <https://github.com/mamba-org/mamba/pull/3984>
- maintenance: fixed msvc warnings about unreachable code by @Klaim in <https://github.com/mamba-org/mamba/pull/3991>
## libmamba 2.3.0 (June 16, 2025) ## libmamba 2.3.0 (June 16, 2025)
Enhancements: Enhancements:

View File

@ -12,13 +12,13 @@
#define LIBMAMBA_VERSION_MAJOR 2 #define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 3 #define LIBMAMBA_VERSION_MINOR 3
#define LIBMAMBA_VERSION_PATCH 0 #define LIBMAMBA_VERSION_PATCH 1
#define LIBMAMBA_VERSION_IS_PRERELEASE 0 #define LIBMAMBA_VERSION_IS_PRERELEASE 0
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1 #if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "" #define LIBMAMBA_VERSION_PRERELEASE_NAME ""
#endif #endif
#define LIBMAMBA_VERSION_STRING "2.3.0" #define LIBMAMBA_VERSION_STRING "2.3.1"
#define LIBMAMBA_VERSION \ #define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH) (LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,19 @@
## libmambapy 2.3.1 (July 28, 2025)
Enhancements:
- Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
CI fixes and doc:
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
Maintenance:
- maint: handle `fmt>=11.2` by @Klaim in <https://github.com/mamba-org/mamba/pull/4001>
- Handle removed `is_rgb` from `fmt 11.2.0` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3998>
## libmambapy 2.3.0 (June 16, 2025) ## libmambapy 2.3.0 (June 16, 2025)
Enhancements: Enhancements:

View File

@ -1,4 +1,4 @@
version_info = ("2", "3", "0") version_info = ("2", "3", "1")
version_prerelease = "" version_prerelease = ""
__version__ = ".".join(map(str, version_info)) __version__ = ".".join(map(str, version_info))
if version_prerelease != "": if version_prerelease != "":

View File

@ -1,3 +1,14 @@
## micromamba 2.3.1 (July 28, 2025)
Bug fixes:
- Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
CI fixes and doc:
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
## micromamba 2.3.0 (June 16, 2025) ## micromamba 2.3.0 (June 16, 2025)
Enhancements: Enhancements:

View File

@ -12,13 +12,13 @@
#define UMAMBA_VERSION_MAJOR 2 #define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 3 #define UMAMBA_VERSION_MINOR 3
#define UMAMBA_VERSION_PATCH 0 #define UMAMBA_VERSION_PATCH 1
#define UMAMBA_VERSION_IS_PRERELEASE 0 #define UMAMBA_VERSION_IS_PRERELEASE 0
#if UMAMBA_VERSION_IS_PRERELEASE == 1 #if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "" #define UMAMBA_VERSION_PRERELEASE_NAME ""
#endif #endif
#define UMAMBA_VERSION_STRING "2.3.0" #define UMAMBA_VERSION_STRING "2.3.1"
#define UMAMBA_VERSION \ #define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH) (UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)