Skip to content

Commit

Permalink
release 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed Feb 7, 2022
1 parent 18a64f6 commit f76f428
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 4 deletions.
18 changes: 18 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
==================================

Expand Down
2 changes: 1 addition & 1 deletion libmamba/include/mamba/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
====================================

Expand Down
2 changes: 1 addition & 1 deletion libmambapy/libmambapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 20, 0)
version_info = (0, 21, 0)
__version__ = ".".join(map(str, version_info))
11 changes: 11 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
===============================

Expand Down
2 changes: 1 addition & 1 deletion mamba/mamba/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 20, 0)
version_info = (0, 21, 0)
__version__ = ".".join(map(str, version_info))
26 changes: 26 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
====================================

Expand Down
2 changes: 1 addition & 1 deletion micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f76f428

Please sign in to comment.