release libmamba 2.0.6.rc3, micromamba 2.0.6.rc3, libmambapy 2.0.6.rc3

This commit is contained in:
Julien Jerphanion 2025-02-04 11:32:30 +01:00
parent 60ae7b3f32
commit 451eaa7ade
No known key found for this signature in database
GPG Key ID: 56B690A97C2E35B8
7 changed files with 68 additions and 5 deletions

View File

@ -1,3 +1,21 @@
# 2025.02.04
Release: 2.0.6.rc3 (libmamba, mamba, micromamba, libmambapy)
Enhancement:
- [all] add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- [all] Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
Maintenance:
- [mamba] Warn about future removal of `etc/profile.d/mamba.sh` by @jjerphan in https://github.com/mamba-org/mamba/pull/3788
- [all] Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- [all] Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
# 2025.01.31
Release: 2.0.6.rc2 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,18 @@
# libmamba 2.0.6.rc3 (February 04, 2025)
Enhancement:
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
Maintenance:
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
# libmamba 2.0.6.rc2 (January 31, 2025)
Enhancements:

View File

@ -15,10 +15,10 @@
#define LIBMAMBA_VERSION_PATCH 6
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc2"
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc3"
#endif
#define LIBMAMBA_VERSION_STRING "2.0.6.rc2"
#define LIBMAMBA_VERSION_STRING "2.0.6.rc3"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,18 @@
# libmambapy 2.0.6.rc3 (February 04, 2025)
Enhancement:
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
Maintenance:
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
# libmambapy 2.0.6.rc2 (January 31, 2025)
Enhancements:

View File

@ -1,5 +1,5 @@
version_info = ("2", "0", "6")
version_prerelease = "rc2"
version_prerelease = "rc3"
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":
__version__ = f"{__version__}.{version_prerelease}"

View File

@ -1,3 +1,18 @@
# micromamba 2.0.6.rc3 (February 04, 2025)
Enhancement:
- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777
Bug fixes:
- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792
Maintenance:
- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769
# micromamba 2.0.6.rc2 (January 31, 2025)
Enhancements:

View File

@ -15,10 +15,10 @@
#define UMAMBA_VERSION_PATCH 6
#define UMAMBA_VERSION_IS_PRERELEASE 1
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "rc2"
#define UMAMBA_VERSION_PRERELEASE_NAME "rc3"
#endif
#define UMAMBA_VERSION_STRING "2.0.6.rc2"
#define UMAMBA_VERSION_STRING "2.0.6.rc3"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)