release libmamba 2.3.0, micromamba 2.3.0, libmambapy 2.3.0

This commit is contained in:
AntoinePrv 2025-06-16 10:50:34 +02:00
parent e3e5f54540
commit 0ad2c5695c
8 changed files with 184 additions and 9 deletions

View File

@ -1,3 +1,34 @@
## 2025.06.16
Release: 2.3.0 (libmamba, mamba, micromamba, libmambapy)
Enhancements:
- [libmamba, micromamba] feat: add option revision to install command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3966>
- [libmambapy] Add missing bindings by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3983>
- [all] Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- [libmambapy] Move stubs to libmambapy-stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3976>
- [all] Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- [libmamba, micromamba] fix: Skip inaccessible CONDA_ENVS_DIRS by @holzman in <https://github.com/mamba-org/mamba/pull/3887>
- [libmamba] Fix env vars substitution from env yaml file by @Hind-M in <https://github.com/mamba-org/mamba/pull/3981>
- [libmambapy] Add missing init bindings from subdir structs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3975>
- [libmambapy] Enable and update Python stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3972>
CI fixes and doc:
- [all] doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- [all] Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- [all] Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- [libmamba, libmambapy] Use range in Solution by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3968>
- [micromamba] maint: Cancel activation script removal by @jjerphan in <https://github.com/mamba-org/mamba/pull/3946>
- [all] Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## 2025.06.04
Release: 2.2.0 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,51 @@
## libmamba 2.3.0 (June 16, 2025)
Enhancements:
- feat: add option revision to install command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3966>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- fix: Skip inaccessible CONDA_ENVS_DIRS by @holzman in <https://github.com/mamba-org/mamba/pull/3887>
- Fix env vars substitution from env yaml file by @Hind-M in <https://github.com/mamba-org/mamba/pull/3981>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- Use range in Solution by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3968>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## libmamba 2.3.0 (June 16, 2025)
Enhancements:
- feat: add option revision to install command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3966>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- fix: Skip inaccessible CONDA_ENVS_DIRS by @holzman in <https://github.com/mamba-org/mamba/pull/3887>
- Fix env vars substitution from env yaml file by @Hind-M in <https://github.com/mamba-org/mamba/pull/3981>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- Use range in Solution by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3968>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## libmamba 2.2.0 (June 04, 2025)
Enhancements:

View File

@ -11,21 +11,21 @@
#include <string>
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 2
#define LIBMAMBA_VERSION_MINOR 3
#define LIBMAMBA_VERSION_PATCH 0
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define LIBMAMBA_VERSION_STRING "2.2.0"
#define LIBMAMBA_VERSION_STRING "2.3.0"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
// Binary version
#define LIBMAMBA_BINARY_CURRENT 4
#define LIBMAMBA_BINARY_CURRENT 5
#define LIBMAMBA_BINARY_REVISION 0
#define LIBMAMBA_BINARY_AGE 0
#define LIBMAMBA_BINARY_AGE 1
namespace mamba
{

View File

@ -23,9 +23,9 @@
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
// Binary version
#define LIBMAMBA_BINARY_CURRENT 3
#define LIBMAMBA_BINARY_CURRENT 5
#define LIBMAMBA_BINARY_REVISION 0
#define LIBMAMBA_BINARY_AGE 0
#define LIBMAMBA_BINARY_AGE 1
namespace mamba
{

View File

@ -1,3 +1,53 @@
## libmambapy 2.3.0 (June 16, 2025)
Enhancements:
- Add missing bindings by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3983>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move stubs to libmambapy-stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3976>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- Add missing init bindings from subdir structs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3975>
- Enable and update Python stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3972>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- Use range in Solution by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3968>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## libmambapy 2.3.0 (June 16, 2025)
Enhancements:
- Add missing bindings by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3983>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move stubs to libmambapy-stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3976>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- Add missing init bindings from subdir structs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3975>
- Enable and update Python stubs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3972>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- Use range in Solution by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3968>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## libmambapy 2.2.0 (June 04, 2025)
Enhancements:

View File

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

View File

@ -1,3 +1,49 @@
## micromamba 2.3.0 (June 16, 2025)
Enhancements:
- feat: add option revision to install command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3966>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- fix: Skip inaccessible CONDA_ENVS_DIRS by @holzman in <https://github.com/mamba-org/mamba/pull/3887>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- maint: Cancel activation script removal by @jjerphan in <https://github.com/mamba-org/mamba/pull/3946>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## micromamba 2.3.0 (June 16, 2025)
Enhancements:
- feat: add option revision to install command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3966>
- Adapt label check to bot by @Hind-M in <https://github.com/mamba-org/mamba/pull/3974>
- Move PR template by @Hind-M in <https://github.com/mamba-org/mamba/pull/3971>
Bug fixes:
- fix: Skip inaccessible CONDA_ENVS_DIRS by @holzman in <https://github.com/mamba-org/mamba/pull/3887>
CI fixes and doc:
- doc: Mention fix for `libmamba Download error (7) Could not connect ...` by @OverLordGoldDragon in <https://github.com/mamba-org/mamba/pull/3980>
- Add constraint on `fmt` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3969>
Maintenance:
- Depend on LGPL builds of libarchive>=3.8 by @jjerphan in <https://github.com/mamba-org/mamba/pull/3982>
- maint: Cancel activation script removal by @jjerphan in <https://github.com/mamba-org/mamba/pull/3946>
- Compile with C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3965>
## micromamba 2.2.0 (June 04, 2025)
Enhancements:

View File

@ -11,14 +11,14 @@
#include <string>
#define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 2
#define UMAMBA_VERSION_MINOR 3
#define UMAMBA_VERSION_PATCH 0
#define UMAMBA_VERSION_IS_PRERELEASE 0
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define UMAMBA_VERSION_STRING "2.2.0"
#define UMAMBA_VERSION_STRING "2.3.0"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)