Release 2.0.8

This commit is contained in:
Johan Mabille 2025-03-19 12:24:43 +01:00
parent d8a36eed43
commit d1ca95e356
7 changed files with 30 additions and 5 deletions

View File

@ -1,3 +1,13 @@
## 2025.03.19
Release: 2.0.8 (libmamba, mamba, micromamba, libmambapy)
Bug fixes:
- [micromamba] fix: Correct paths and suggestions in `etc/profile.d/mamba.sh` by @jjerphan in <https://github.com/mamba-org/mamba/pull/3865>
- [libmamba] Avoid possible out of range index in MatchSpec::parse() by @opoplawski in <https://github.com/mamba-org/mamba/pull/3849>
- [libmamba] fix: Modify cache directory permissions in two steps by @jjerphan in <https://github.com/mamba-org/mamba/pull/3844>
## 2025.03.07
Release: 2.0.7 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,10 @@
## libmamba 2.0.8 (March 19, 2025)
Bug fixes:
- Avoid possible out of range index in MatchSpec::parse() by @opoplawski in <https://github.com/mamba-org/mamba/pull/3849>
- fix: Modify cache directory permissions in two steps by @jjerphan in <https://github.com/mamba-org/mamba/pull/3844>
## libmamba 2.0.7 (March 07, 2025)
Bug fixes:

View File

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

View File

@ -1,3 +1,5 @@
## libmambapy 2.0.8 (March 19, 2025)
## libmambapy 2.0.7 (March 07, 2025)
Bug fixes:

View File

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

View File

@ -1,3 +1,9 @@
## micromamba 2.0.8 (March 19, 2025)
Bug fixes:
- fix: Correct paths and suggestions in `etc/profile.d/mamba.sh` by @jjerphan in <https://github.com/mamba-org/mamba/pull/3865>
## micromamba 2.0.7 (March 07, 2025)
Bug fixes:

View File

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