mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1
This commit is contained in:
parent
4e7bd605b0
commit
6ed35f84ef
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -1,3 +1,22 @@
|
|||
2023.03.28
|
||||
==========
|
||||
|
||||
Releases: libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1
|
||||
|
||||
Enhancements:
|
||||
|
||||
- [libmamba] First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
|
||||
- [libmamba] Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
|
||||
- [libmamba] TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
|
||||
- [libmamba] Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
|
||||
- [libmamba, micromamba] add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
|
||||
- [libmamba] Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [libmamba] Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397
|
||||
|
||||
|
||||
2023.03.22
|
||||
==========
|
||||
|
||||
|
@ -5,7 +24,7 @@ Releases: libmamba 1.4.0, libmambapy 1.4.0, mamba 1.4.0, micromamba 1.4.0
|
|||
|
||||
Enchancements:
|
||||
|
||||
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
|
||||
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
|
||||
- [libmamba, libmambapy, micromamba] Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
|
||||
- [all] Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
|
||||
- [libmamba] Added checked numeric cast by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2315
|
||||
|
|
|
@ -1,3 +1,19 @@
|
|||
libmamba 1.4.1 (March 28, 2023)
|
||||
===============================
|
||||
|
||||
Enhancements:
|
||||
|
||||
- First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
|
||||
- Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
|
||||
- TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
|
||||
- Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
|
||||
- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
|
||||
- Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397
|
||||
|
||||
libmamba 1.4.0 (March 22, 2023)
|
||||
===============================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 1
|
||||
#define LIBMAMBA_VERSION_MINOR 4
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
#define LIBMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmambapy 1.4.1 (March 28, 2023)
|
||||
=================================
|
||||
|
||||
|
||||
libmambapy 1.4.0 (March 22, 2023)
|
||||
=================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 0)
|
||||
version_info = (1, 4, 1)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
mamba 1.4.1 (March 28, 2023)
|
||||
============================
|
||||
|
||||
|
||||
mamba 1.4.0 (March 22, 2023)
|
||||
============================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 0)
|
||||
version_info = (1, 4, 1)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
micromamba 1.4.1 (March 28, 2023)
|
||||
=================================
|
||||
|
||||
Enhancements:
|
||||
|
||||
- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
|
||||
|
||||
micromamba 1.4.0 (March 22, 2023)
|
||||
=================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 1
|
||||
#define UMAMBA_VERSION_MINOR 4
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
#define UMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue