mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.4.7, libmambapy 1.4.7, mamba 1.4.7, micromamba 1.4.7
This commit is contained in:
parent
cd1119fc41
commit
2ed8bee1e1
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,3 +1,23 @@
|
|||
2023.07.06
|
||||
==========
|
||||
|
||||
Releases: libmamba 1.4.7, libmambapy 1.4.7, mamba 1.4.7, micromamba 1.4.7
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [libmamba] ZST support to mamba and remove the feature flag by @johnhany97 in https://github.com/mamba-org/mamba/pull/2642
|
||||
- [libmamba] Add Version::starts_with and Version::compatible_with by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2645
|
||||
- [libmamba, libmambapy] Create Solver solution by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2584
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [libmamba] call init_console to prevent UTF8 errors when extracting packages by @wolfv in https://github.com/mamba-org/mamba/pull/2655
|
||||
[libmambapy, mamba] Call init_console in mamba to prevent UTF8 errors when extracting packages by @JohanMabille in https://github.com/mamba-org/mamba/pull/2657
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- [libmambapy] Fixup python-api docs slightly by @HaoZeke in https://github.com/mamba-org/mamba/pull/2285
|
||||
|
||||
2023.06.30
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
libmamba 1.4.7 (July 06, 2023)
|
||||
==============================
|
||||
|
||||
Enhancements:
|
||||
|
||||
- ZST support to mamba and remove the feature flag by @johnhany97 in https://github.com/mamba-org/mamba/pull/2642
|
||||
- Add Version::starts_with and Version::compatible_with by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2645
|
||||
- Create Solver solution by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2584
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- call init_console to prevent UTF8 errors when extracting packages by @wolfv in https://github.com/mamba-org/mamba/pull/2655
|
||||
|
||||
libmamba 1.4.6 (June 30, 2023)
|
||||
==============================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 1
|
||||
#define LIBMAMBA_VERSION_MINOR 4
|
||||
#define LIBMAMBA_VERSION_PATCH 6
|
||||
#define LIBMAMBA_VERSION_PATCH 7
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
libmambapy 1.4.7 (July 06, 2023)
|
||||
================================
|
||||
|
||||
Enhancements:
|
||||
|
||||
- Create Solver solution by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2584
|
||||
|
||||
[libmambapy, mamba] Call init_console in mamba to prevent UTF8 errors when extracting packages by @JohanMabille in https://github.com/mamba-org/mamba/pull/2657
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- Fixup python-api docs slightly by @HaoZeke in https://github.com/mamba-org/mamba/pull/2285
|
||||
|
||||
libmambapy 1.4.6 (June 30, 2023)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 6)
|
||||
version_info = (1, 4, 7)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
mamba 1.4.7 (July 06, 2023)
|
||||
===========================
|
||||
|
||||
|
||||
[libmambapy, mamba] Call init_console in mamba to prevent UTF8 errors when extracting packages by @JohanMabille in https://github.com/mamba-org/mamba/pull/2657
|
||||
|
||||
mamba 1.4.6 (June 30, 2023)
|
||||
===========================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 6)
|
||||
version_info = (1, 4, 7)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
micromamba 1.4.7 (July 06, 2023)
|
||||
================================
|
||||
|
||||
|
||||
micromamba 1.4.6 (June 30, 2023)
|
||||
================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 1
|
||||
#define UMAMBA_VERSION_MINOR 4
|
||||
#define UMAMBA_VERSION_PATCH 6
|
||||
#define UMAMBA_VERSION_PATCH 7
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue