mirror of https://github.com/mamba-org/mamba.git
release 0.27.0 (#1990)
This commit is contained in:
parent
4faa7481a6
commit
cb2342a009
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,3 +1,18 @@
|
|||
2022.10.04
|
||||
==========
|
||||
|
||||
Releases: libmamba 0.27.0, libmambapy 0.27.0, mamba 0.27.0, micromamba 0.27.0
|
||||
|
||||
Bug fixes:
|
||||
- [libmamba, micromamba] fix lockfiles relying on PID (thanks @Klaim) #1915
|
||||
- [micromamba] fix error condition in micromamba run to not print warning every time #1985
|
||||
- [micromamba] fix error when getting size of directories (thanks @Klaim) #1982
|
||||
- [micromamba] fix crash when installing pip packages from env files (thanks @Klaim) #1978
|
||||
- [libmambapy] make compilation with external fmt library work #1987
|
||||
|
||||
Enhancements:
|
||||
- [micromamba] add cross-compiled builds to CI (thanks @pavelzw) #1976, #1989
|
||||
|
||||
2022.09.29
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmamba 0.27.0 (October 04, 2022)
|
||||
==================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- fix lockfiles relying on PID (thanks @Klaim) #1915
|
||||
|
||||
libmamba 0.26.0 (September 30, 2022)
|
||||
====================================
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 26
|
||||
#define LIBMAMBA_VERSION_MINOR 27
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmambapy 0.27.0 (October 04, 2022)
|
||||
====================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- make compilation with external fmt library work #1987
|
||||
|
||||
libmambapy 0.26.0 (September 30, 2022)
|
||||
======================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 26, 0)
|
||||
version_info = (0, 27, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
mamba 0.27.0 (October 04, 2022)
|
||||
===============================
|
||||
|
||||
|
||||
mamba 0.26.0 (September 30, 2022)
|
||||
=================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 26, 0)
|
||||
version_info = (0, 27, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
micromamba 0.27.0 (October 04, 2022)
|
||||
====================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- fix lockfiles relying on PID (thanks @Klaim) #1915
|
||||
- fix error condition in micromamba run to not print warning every time #1985
|
||||
- fix error when getting size of directories (thanks @Klaim) #1982
|
||||
- fix crash when installing pip packages from env files (thanks @Klaim) #1978
|
||||
|
||||
Enhancements:
|
||||
|
||||
- add cross-compiled builds to CI (thanks @pavelzw) #1976, #1989
|
||||
|
||||
micromamba 0.26.0 (September 30, 2022)
|
||||
======================================
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 26
|
||||
#define UMAMBA_VERSION_MINOR 27
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
|
|
Loading…
Reference in New Issue