release libmamba 2.0.4alpha0, libmambapy 2.0.4alpha0, micromamba 2.0.4alpha0

This commit is contained in:
Hind Montassif 2024-11-12 11:56:23 +01:00
parent 48df20618f
commit e1bdc942af
7 changed files with 37 additions and 3 deletions

View File

@ -1,3 +1,17 @@
2024.11.12
==========
Releases: libmamba 2.0.4alpha0, libmambapy 2.0.4alpha0, micromamba 2.0.4alpha0
Enhancements:
- [libmamba] Fix: json parsing error due to wrong encoding of Python output by @Klaim in https://github.com/mamba-org/mamba/pull/3584
- [libmamba] Adds logs clarifying the source of the error "could not load prefix data by @Klaim in https://github.com/mamba-org/mamba/pull/3581
Bug fixes:
- [libmamba] fix: Skip misformatted configuration files by @ChaonengQuan in https://github.com/mamba-org/mamba/pull/3580
2024.11.05
==========

View File

@ -1,3 +1,15 @@
libmamba 2.0.4alpha0 (November 12, 2024)
========================================
Enhancements:
- Fix: json parsing error due to wrong encoding of Python output by @Klaim in https://github.com/mamba-org/mamba/pull/3584
- Adds logs clarifying the source of the error "could not load prefix data by @Klaim in https://github.com/mamba-org/mamba/pull/3581
Bug fixes:
- fix: Skip misformatted configuration files by @ChaonengQuan in https://github.com/mamba-org/mamba/pull/3580
libmamba 2.0.3 (November 05, 2024)
==================================

View File

@ -12,7 +12,7 @@
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 0
#define LIBMAMBA_VERSION_PATCH 3
#define LIBMAMBA_VERSION_PATCH 4
// Binary version
#define LIBMAMBA_BINARY_CURRENT 2

View File

@ -1,3 +1,7 @@
libmambapy 2.0.4alpha0 (November 12, 2024)
==========================================
libmambapy 2.0.3 (November 05, 2024)
====================================

View File

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

View File

@ -1,3 +1,7 @@
micromamba 2.0.4alpha0 (November 12, 2024)
==========================================
micromamba 2.0.3 (November 05, 2024)
====================================

View File

@ -12,7 +12,7 @@
#define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 0
#define UMAMBA_VERSION_PATCH 3
#define UMAMBA_VERSION_PATCH 4
// Binary version
#define UMAMBA_BINARY_CURRENT 1