diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index bcfe87aef..e6ed45bf0 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -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) =================================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index a34a4b35c..0ada181c4 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -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 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 4746dcbc6..443e60cd5 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,7 @@ +libmambapy 0.19.1 (December 08, 2021) +===================================== + + libmambapy 0.19.0 (November 30, 2021) ===================================== diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index c3e29ee80..ad501c8cf 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 19, 0) +version_info = (0, 19, 1) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index 8ab4f99a9..6593b79d5 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -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) ================================ diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index c3e29ee80..ad501c8cf 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 19, 0) +version_info = (0, 19, 1) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 7326b0f52..3d30d1f4b 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -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) ===================================== diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index 47b792195..c73fd0afe 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -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