mirror of https://github.com/mamba-org/mamba.git
release libmamba 2.0.6.rc2, micromamba 2.0.6.rc2, libmambapy 2.0.6.rc2
This commit is contained in:
parent
f7d1a29774
commit
daebc1be49
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,3 +1,17 @@
|
|||
# 2025.01.31
|
||||
|
||||
Release: 2.0.6.rc2 (libmamba, mamba, micromamba, libmambapy)
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [all] Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [all] Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
|
||||
- [all] Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
|
||||
- [all] Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
|
||||
|
||||
# 2025.01.28
|
||||
|
||||
Release: 2.0.6.rc1 (libmamba, mamba, micromamba, libmambapy)
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
# libmamba 2.0.6.rc2 (January 31, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [all] Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [all] Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
|
||||
- [all] Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
|
||||
- [all] Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
|
||||
|
||||
# libmamba 2.0.6.rc1 (January 28, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
|
|
@ -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 "rc1"
|
||||
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc2"
|
||||
#endif
|
||||
|
||||
#define LIBMAMBA_VERSION_STRING "2.0.6.rc1"
|
||||
#define LIBMAMBA_VERSION_STRING "2.0.6.rc2"
|
||||
#define LIBMAMBA_VERSION \
|
||||
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
|
||||
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
# libmambapy 2.0.6.rc2 (January 31, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [all] Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [all] Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
|
||||
- [all] Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
|
||||
- [all] Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
|
||||
|
||||
# libmambapy 2.0.6.rc1 (January 28, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
version_info = ("2", "0", "6")
|
||||
version_prerelease = "rc1"
|
||||
version_prerelease = "rc2"
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
if version_prerelease != "":
|
||||
__version__ = f"{__version__}.{version_prerelease}"
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
# micromamba 2.0.6.rc2 (January 31, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [all] Add md5 flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3773
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [all] Factor handling of `GetModuleFileNameW` by @jjerphan in https://github.com/mamba-org/mamba/pull/3785
|
||||
- [all] Adapt root prefix determination by @jjerphan in https://github.com/mamba-org/mamba/pull/3782
|
||||
- [all] Remove pip warning for `PIP_NO_PYTHON_VERSION_WARNING` by @Hind-M in https://github.com/mamba-org/mamba/pull/3770
|
||||
|
||||
# micromamba 2.0.6.rc1 (January 28, 2025)
|
||||
|
||||
Enhancements:
|
||||
|
|
|
@ -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 "rc1"
|
||||
#define UMAMBA_VERSION_PRERELEASE_NAME "rc2"
|
||||
#endif
|
||||
|
||||
#define UMAMBA_VERSION_STRING "2.0.6.rc1"
|
||||
#define UMAMBA_VERSION_STRING "2.0.6.rc2"
|
||||
#define UMAMBA_VERSION \
|
||||
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)
|
||||
|
||||
|
|
Loading…
Reference in New Issue