mirror of https://github.com/mamba-org/mamba.git
release 0.21.0
This commit is contained in:
parent
18a64f6f7f
commit
f76f428dc6
|
@ -1,3 +1,21 @@
|
|||
libmamba 0.21.0 (February 07, 2022)
|
||||
===================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- generate PkgMgr role file from its file definition #1408
|
||||
- Fix a regex segfault in history parsing #1441
|
||||
- Add test for segfault history parsing #1444 (thanks @jonashaag)
|
||||
|
||||
Improvements
|
||||
|
||||
- Update pre-commit versions (thanks @jonashaag) #1417
|
||||
- Use clang-format from pypi (thanks @chrisburr) #1430
|
||||
- Incremental ccache updates (thanks @jonashaag) #1445
|
||||
- Speed up noarch compilation (thanks @chrisburr) #1422
|
||||
- New fancy progress bars! (thanks @adriendelsalle) #1426, #1350
|
||||
- Refactor how we set env vars in the Context #1426
|
||||
|
||||
libmamba 0.20.0 (January 25, 2022)
|
||||
==================================
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
|
||||
#define LIBMAMBA_VERSION_MAJOR 0
|
||||
#define LIBMAMBA_VERSION_MINOR 20
|
||||
#define LIBMAMBA_VERSION_MINOR 21
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
libmambapy 0.21.0 (February 07, 2022)
|
||||
=====================================
|
||||
|
||||
|
||||
Improvements
|
||||
|
||||
- Update pre-commit versions (thanks @jonashaag) #1417
|
||||
- Use clang-format from pypi (thanks @chrisburr) #1430
|
||||
- Incremental ccache updates (thanks @jonashaag) #1445
|
||||
|
||||
libmambapy 0.20.0 (January 25, 2022)
|
||||
====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 20, 0)
|
||||
version_info = (0, 21, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,14 @@
|
|||
mamba 0.21.0 (February 07, 2022)
|
||||
================================
|
||||
|
||||
|
||||
Improvements
|
||||
|
||||
- Update pre-commit versions (thanks @jonashaag) #1417
|
||||
- Use clang-format from pypi (thanks @chrisburr) #1430
|
||||
- Incremental ccache updates (thanks @jonashaag) #1445
|
||||
- Include credentials for defaults channel URLs (thanks @wulmer) #1421
|
||||
|
||||
mamba 0.20.0 (January 25, 2022)
|
||||
===============================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 20, 0)
|
||||
version_info = (0, 21, 0)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,29 @@
|
|||
micromamba 0.21.0 (February 07, 2022)
|
||||
=====================================
|
||||
|
||||
Bug fixes
|
||||
|
||||
- fix crash with missing CONDARC file (thanks @jonashaag) #1417
|
||||
- fix `micromamba --log-level` (thanks @jonashaag) #1417
|
||||
- Fix erroneous error print when computing SHA256 of missing symlink #1412
|
||||
- Add `-n` flag handling to `micromamba activate` #1411
|
||||
- Refactor configuration loading and create file if it doesn't exist when setting values #1420
|
||||
- Improve shell scripts when ZSH_VERSION is unbound #1440
|
||||
- Return error code when pip install fails from environment.yml #1442
|
||||
|
||||
Improvements
|
||||
|
||||
- Update pre-commit versions (thanks @jonashaag) #1417
|
||||
- Use clang-format from pypi (thanks @chrisburr) #1430
|
||||
- Incremental ccache updates (thanks @jonashaag) #1445
|
||||
- Substitute environment vars in .condarc files (thanks @jonashaag) #1423
|
||||
- Speed up noarch compilation (thanks @chrisburr) #1422
|
||||
- New fancy progress bars! (thanks @adriendelsalle) #1426, #1350
|
||||
- Add `micromamba run` command (thanks @JohanMabille) #1380, #1395, #1406, #1438, #1434
|
||||
- Add `-f` for `micromamba clean` command (thanks @JohanMabille) #1449
|
||||
- Add improved `micromamba update --all` #1318
|
||||
- Add `micromamba repoquery` command #1318
|
||||
|
||||
micromamba 0.20.0 (January 25, 2022)
|
||||
====================================
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include <string>
|
||||
|
||||
#define UMAMBA_VERSION_MAJOR 0
|
||||
#define UMAMBA_VERSION_MINOR 20
|
||||
#define UMAMBA_VERSION_MINOR 21
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
|
||||
// Binary version
|
||||
|
|
Loading…
Reference in New Issue