mirror of https://github.com/mamba-org/mamba.git
release 0.23.3
This commit is contained in:
parent
c124c4c818
commit
d992bd655e
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,3 +1,22 @@
|
|||
2022.05.20
|
||||
==========
|
||||
|
||||
Releases: libmamba 0.23.3, libmambapy 0.23.3, mamba 0.23.3, micromamba 0.23.3
|
||||
|
||||
Bug fixes
|
||||
- [micromamba] Fix summing behavior of `-v` flags #1690
|
||||
- [all] fix curl callback to not exit anymore but report a proper error #1684
|
||||
- [micromamba] fix up explicit installation by using proper variables #1677
|
||||
- [libmamba] fix channel prefix test (thanks @jonashaag) #1674
|
||||
- [mamba] fix strict priority for `mamba create env ...` #1688
|
||||
|
||||
Improvements
|
||||
- [micromamba] make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686
|
||||
- [libmamba] various Windows / CMake improvements #1683
|
||||
- [libmamba] various warnings fixed on Windows and Unix #1683, 1691
|
||||
- [libmamba] fix yaml-cpp linkage #1678
|
||||
|
||||
|
||||
2022.05.12
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
libmamba 0.23.3 (May 20, 2022)
|
||||
==============================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- fix curl callback to not exit anymore but report a proper error #1684
|
||||
- fix channel prefix test (thanks @jonashaag) #1674
|
||||
|
||||
Improvements
|
||||
|
||||
- various Windows / CMake improvements #1683
|
||||
- various warnings fixed on Windows and Unix #1683, 1691
|
||||
- fix yaml-cpp linkage #1678
|
||||
|
||||
libmamba 0.23.1 (May 11, 2022)
|
||||
==============================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 23
|
||||
#define LIBMAMBA_VERSION_PATCH 1
|
||||
#define LIBMAMBA_VERSION_PATCH 3
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmambapy 0.23.3 (May 20, 2022)
|
||||
================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- fix curl callback to not exit anymore but report a proper error #1684
|
||||
|
||||
libmambapy 0.23.1 (May 11, 2022)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 23, 1)
|
||||
version_info = (0, 23, 3)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
mamba 0.23.3 (May 20, 2022)
|
||||
===========================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- fix curl callback to not exit anymore but report a proper error #1684
|
||||
- fix strict priority for `mamba create env ...` #1688
|
||||
|
||||
mamba 0.23.1 (May 11, 2022)
|
||||
===========================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 23, 1)
|
||||
version_info = (0, 23, 3)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
micromamba 0.23.3 (May 20, 2022)
|
||||
================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Fix summing behavior of `-v` flags #1690
|
||||
- fix curl callback to not exit anymore but report a proper error #1684
|
||||
- fix up explicit installation by using proper variables #1677
|
||||
|
||||
Improvements
|
||||
|
||||
- make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686
|
||||
|
||||
micromamba 0.23.2 (May 12, 2022)
|
||||
================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 23
|
||||
#define UMAMBA_VERSION_PATCH 2
|
||||
#define UMAMBA_VERSION_PATCH 3
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue