Release 2.1.0

This commit is contained in:
Johan Mabille 2025-04-01 16:09:45 +02:00
parent b7ea5cf4c0
commit 9e76befe6e
7 changed files with 43 additions and 7 deletions

View File

@ -1,3 +1,15 @@
## 2025.04.01
Release: 2.1.0 (libmamba, mamba, micromamba, libmambapy)
Bug fixes:
- [micromamba, libmamba] fix: Prohibit conda envs path and conda envs dirs by @holzman in <https://github.com/mamba-org/mamba/pull/3854>
- [libmamba] fix: ProgressBar member initialization order by @jmakovicka in <https://github.com/mamba-org/mamba/pull/3872>
- [micromamba, libmamba] Fix authenticated downloading by @Hind-M in <https://github.com/mamba-org/mamba/pull/3868>
- [micromamba, libmamba] Windows menuinst by @Hind-M in <https://github.com/mamba-org/mamba/pull/3846>
- [libmamba, libmambapy] Support SHA256 hashes in @EXPLICIT files by @jaimergp in <https://github.com/mamba-org/mamba/pull/3866>
## 2025.03.19
Release: 2.0.8 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,13 @@
## libmamba 2.1.0 (April 01, 2025)
Bug fixes:
- fix: Prohibit conda envs path and conda envs dirs by @holzman in <https://github.com/mamba-org/mamba/pull/3854>
- fix: ProgressBar member initialization order by @jmakovicka in <https://github.com/mamba-org/mamba/pull/3872>
- Fix authenticated downloading by @Hind-M in <https://github.com/mamba-org/mamba/pull/3868>
- Windows menuinst by @Hind-M in <https://github.com/mamba-org/mamba/pull/3846>
- Support SHA256 hashes in @EXPLICIT files by @jaimergp in <https://github.com/mamba-org/mamba/pull/3866>
## libmamba 2.0.8 (March 19, 2025)
Bug fixes:

View File

@ -11,14 +11,14 @@
#include <string>
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 0
#define LIBMAMBA_VERSION_PATCH 8
#define LIBMAMBA_VERSION_MINOR 1
#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.0.8"
#define LIBMAMBA_VERSION_STRING "2.1.0"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,9 @@
## libmambapy 2.1.0 (April 01, 2025)
Bug fixes:
- Support SHA256 hashes in @EXPLICIT files by @jaimergp in <https://github.com/mamba-org/mamba/pull/3866>
## libmambapy 2.0.8 (March 19, 2025)
## libmambapy 2.0.7 (March 07, 2025)

View File

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

View File

@ -1,3 +1,11 @@
## micromamba 2.1.0 (April 01, 2025)
Bug fixes:
- fix: Prohibit conda envs path and conda envs dirs by @holzman in <https://github.com/mamba-org/mamba/pull/3854>
- Fix authenticated downloading by @Hind-M in <https://github.com/mamba-org/mamba/pull/3868>
- Windows menuinst by @Hind-M in <https://github.com/mamba-org/mamba/pull/3846>
## micromamba 2.0.8 (March 19, 2025)
Bug fixes:

View File

@ -11,14 +11,14 @@
#include <string>
#define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 0
#define UMAMBA_VERSION_PATCH 8
#define UMAMBA_VERSION_MINOR 1
#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.0.8"
#define UMAMBA_VERSION_STRING "2.1.0"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)