release 0.19.1 of all projects

This commit is contained in:
Wolf Vollprecht 2021-12-08 18:53:39 +01:00
parent 89f2ae0054
commit 15c347db76
8 changed files with 43 additions and 4 deletions

View File

@ -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)
===================================

View File

@ -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

View File

@ -1,3 +1,7 @@
libmambapy 0.19.1 (December 08, 2021)
=====================================
libmambapy 0.19.0 (November 30, 2021)
=====================================

View File

@ -1,2 +1,2 @@
version_info = (0, 19, 0)
version_info = (0, 19, 1)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
================================

View File

@ -1,2 +1,2 @@
version_info = (0, 19, 0)
version_info = (0, 19, 1)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
=====================================

View File

@ -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