mirror of https://github.com/mamba-org/mamba.git
release libmamba 0.19.0, libmambapy 0.19.0, mamba 0.19.0, micromamba 0.19.0 (#1314)
This commit is contained in:
parent
010aad71a0
commit
5a40d504e7
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -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
|
||||
==========
|
||||
|
||||
|
|
|
@ -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)
|
||||
===================================
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 18, 2)
|
||||
version_info = (0, 19, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -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)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 18, 2)
|
||||
version_info = (0, 19, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -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)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue