release libmamba 0.19.0, libmambapy 0.19.0, mamba 0.19.0, micromamba 0.19.0 (#1314)

This commit is contained in:
Wolf Vollprecht 2021-11-30 18:00:04 +01:00 committed by GitHub
parent 010aad71a0
commit 5a40d504e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 60 additions and 8 deletions

View File

@ -1,3 +1,18 @@
2021.11.30
==========
Releases: libmamba 0.19.0, libmambapy 0.19.0, mamba 0.19.0, micromamba 0.19.0
Bug fixes
- [all] Better Unicode support on Windows (@wolfv) #1306
- [libmamba, libmambapy] Solver has function to get more solver errors (@wolfv) #1310
- [mamba, micromamba] Do not set higher prio to arch vs noarch (@wolfv) #1312
- [libmamba] Close json repodata file after opening (@wolfv) #1309
- [micromamba] Add shell_completion, changeps1 and env_prompt as RC settings, remove auto-activate-base CLI flag (@wolfv) #1304
- [libmamba] Add bash & zsh shell_completion to activation functions
- [mamba] Use always_yes for `mamba env` subcommand (@wolfv) #1301
- [libmambapy] Remove libmamba from install_requires for libmambapy (@duncanmmacleod) #1303
2021.11.24
==========

View File

@ -1,3 +1,13 @@
libmamba 0.19.0 (November 30, 2021)
===================================
Bug fixes
- Better Unicode support on Windows (@wolfv) #1306
- Solver has function to get more solver errors (@wolfv) #1310
- Close json repodata file after opening (@wolfv) #1309
- Add bash & zsh shell_completion to activation functions
libmamba 0.18.2 (November 24, 2021)
===================================

View File

@ -11,11 +11,11 @@
#include <string>
#define LIBMAMBA_VERSION_MAJOR 0
#define LIBMAMBA_VERSION_MINOR 18
#define LIBMAMBA_VERSION_PATCH 2
#define LIBMAMBA_VERSION_MINOR 19
#define LIBMAMBA_VERSION_PATCH 0
// Binary version
#define LIBMAMBA_BINARY_CURRENT 1
#define LIBMAMBA_BINARY_CURRENT 2
#define LIBMAMBA_BINARY_REVISION 0
#define LIBMAMBA_BINARY_AGE 0

View File

@ -15,7 +15,7 @@
#define LIBMAMBA_VERSION_PATCH {{ version_patch }}
// Binary version
#define LIBMAMBA_BINARY_CURRENT 1
#define LIBMAMBA_BINARY_CURRENT 2
#define LIBMAMBA_BINARY_REVISION 0
#define LIBMAMBA_BINARY_AGE 0

View File

@ -1,3 +1,12 @@
libmambapy 0.19.0 (November 30, 2021)
=====================================
Bug fixes
- Better Unicode support on Windows (@wolfv) #1306
- Solver has function to get more solver errors (@wolfv) #1310
- Remove libmamba from install_requires for libmambapy (@duncanmmacleod) #1303
libmambapy 0.18.2 (November 24, 2021)
=====================================

View File

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

View File

@ -1,3 +1,12 @@
mamba 0.19.0 (November 30, 2021)
================================
Bug fixes
- Better Unicode support on Windows (@wolfv) #1306
- Do not set higher prio to arch vs noarch (@wolfv) #1312
- Use always_yes for `mamba env` subcommand (@wolfv) #1301
mamba 0.18.2 (November 24, 2021)
================================

View File

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

View File

@ -1,3 +1,12 @@
micromamba 0.19.0 (November 30, 2021)
=====================================
Bug fixes
- Better Unicode support on Windows (@wolfv) #1306
- Do not set higher prio to arch vs noarch (@wolfv) #1312
- Add shell_completion, changeps1 and env_prompt as RC settings, remove auto-activate-base CLI flag (@wolfv) #1304
micromamba 0.18.2 (November 24, 2021)
=====================================

View File

@ -11,8 +11,8 @@
#include <string>
#define UMAMBA_VERSION_MAJOR 0
#define UMAMBA_VERSION_MINOR 18
#define UMAMBA_VERSION_PATCH 2
#define UMAMBA_VERSION_MINOR 19
#define UMAMBA_VERSION_PATCH 0
// Binary version
#define UMAMBA_BINARY_CURRENT 1