mirror of https://github.com/mamba-org/mamba.git
release 0.19.1 of all projects
This commit is contained in:
parent
89f2ae0054
commit
15c347db76
|
@ -1,3 +1,20 @@
|
|||
libmamba 0.19.1 (December 08, 2021)
|
||||
===================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Fix curl progress callback
|
||||
|
||||
Improvements
|
||||
|
||||
- Use WinReg from conda-forge
|
||||
- Add fast path for hide_secrets (thanks @baszalmstra) #1337
|
||||
- Use the original sha256 hash if a file doesnt change (thanks @baszalmstra) #1338
|
||||
- Rename files that are in use (and cannot be removed) on Windows (@wolfv) #1319
|
||||
- Avoid recomputing SHA256 for symbolic links (@wolfv) #1319
|
||||
- Improve cleanup of directories in use (@wolfv) #1319
|
||||
- Fix pyc compilation on Windows (@adriendelsalle) #1340
|
||||
|
||||
libmamba 0.19.0 (November 30, 2021)
|
||||
===================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 19
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
#define LIBMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmambapy 0.19.1 (December 08, 2021)
|
||||
=====================================
|
||||
|
||||
|
||||
libmambapy 0.19.0 (November 30, 2021)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 19, 0)
|
||||
version_info = (0, 19, 1)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
mamba 0.19.1 (December 08, 2021)
|
||||
================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Fix environment double print and add dry run to `mamba env create` (@wolfv) #1315
|
||||
|
||||
mamba 0.19.0 (November 30, 2021)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 19, 0)
|
||||
version_info = (0, 19, 1)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,14 @@
|
|||
micromamba 0.19.1 (December 08, 2021)
|
||||
=====================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- Fix lockfiles in Unicode prefix (@wolfv) #1319
|
||||
|
||||
Improvements
|
||||
|
||||
- Add `micromamba clean --trash` command to remove `*.mamba_trash` files (@wolfv) #1319
|
||||
|
||||
micromamba 0.19.0 (November 30, 2021)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 19
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
#define UMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue