mirror of https://github.com/mamba-org/mamba.git
release libmamba 0.21.2, libmambapy 0.21.2, mamba 0.21.2, micromamba 0.21.2
This commit is contained in:
parent
69099f3a17
commit
b3aef48677
|
@ -1,3 +1,12 @@
|
|||
2022.02.14
|
||||
==========
|
||||
|
||||
Releases: libmamba 0.21.2, libmambapy 0.21.2, mamba 0.21.2, micromamba 0.21.2
|
||||
|
||||
Bug fixes
|
||||
- [libmamba] Fix json read of `_mod` and `_etag` when they are not available #1490
|
||||
- [micromamba] Properly attach stdin for `micromamba run` #1488
|
||||
|
||||
2022.02.11
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmamba 0.21.2 (February 14, 2022)
|
||||
===================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Fix json read of `_mod` and `_etag` when they are not available #1490
|
||||
|
||||
libmamba 0.21.1 (February 11, 2022)
|
||||
===================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 21
|
||||
#define LIBMAMBA_VERSION_PATCH 1
|
||||
#define LIBMAMBA_VERSION_PATCH 2
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmambapy 0.21.2 (February 14, 2022)
|
||||
=====================================
|
||||
|
||||
|
||||
libmambapy 0.21.1 (February 11, 2022)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 21, 1)
|
||||
version_info = (0, 21, 2)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
mamba 0.21.2 (February 14, 2022)
|
||||
================================
|
||||
|
||||
|
||||
mamba 0.21.1 (February 11, 2022)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 21, 1)
|
||||
version_info = (0, 21, 2)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
micromamba 0.21.2 (February 14, 2022)
|
||||
=====================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Properly attach stdin for `micromamba run` #1488
|
||||
|
||||
micromamba 0.21.1 (February 11, 2022)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 21
|
||||
#define UMAMBA_VERSION_PATCH 1
|
||||
#define UMAMBA_VERSION_PATCH 2
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue