Release 0.22.0 (#1539)

This commit is contained in:
Wolf Vollprecht 2022-02-25 18:41:03 +01:00 committed by GitHub
parent 7dac4d3989
commit 78ec204b64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 71 additions and 6 deletions

View File

@ -1,3 +1,25 @@
2022.02.25
==========
Releases: libmamba 0.22.0, libmambapy 0.22.0, mamba 0.22.0, micromamba 0.22.0
Bug fixes
- [libmamba, mamba, micromamba] Add noarch recompilation step for mamba and micromamba #1511
- [micromamba] Add `--force-reinstall`, `--only-deps` and `--no-deps` to micromamba #1531
- [micromamba] Tolerate `PATH` being unset better (thanks @chrisburr) #1532
Improvements
- [micromamba] Add `--label` option to micromamba run and automatically generate process names otherwise (thanks @Klaim) #1491, #1530, #1529
- [libmamba] Remove compile time warnings by updating deprecated openssl functions #1509
- [micromamba] Add `search` as an alias for `repoquery search` (thanks @JohanMabille) #1510
- [micromamba] Fix `repoquery search` not working outside activated environment (thanks @JohanMabille) #1510
- [micromamba] Refactor configuration system (thanks @JohanMabille) #1500
- [libmamba] Use custom debug callback from libcurl and libsolv (routed through spdlog) #1507
- [libmamba] Refactor Channel implementation (thanks @JohanMabille) #1537
- [libmamba] Hide tokens in libcurl and libsolv as well (and remove need for `--experimental` flag to load tokens) #1538
- [libmamba] Pass through QEMU_LD_PREFIX to subprocesses (thanks @chrisburr) #1533
- [micromamba] Fix segfault on Linux with "fake" micromamba activate command #1496
2022.02.14
==========

View File

@ -1,3 +1,18 @@
libmamba 0.22.0 (February 25, 2022)
===================================
Bug fixes
- Add noarch recompilation step for mamba and micromamba #1511
Improvements
- Remove compile time warnings by updating deprecated openssl functions #1509
- Use custom debug callback from libcurl and libsolv (routed through spdlog) #1507
- Refactor Channel implementation (thanks @JohanMabille) #1537
- Hide tokens in libcurl and libsolv as well (and remove need for `--experimental` flag to load tokens) #1538
- Pass through QEMU_LD_PREFIX to subprocesses (thanks @chrisburr) #1533
libmamba 0.21.2 (February 14, 2022)
===================================

View File

@ -11,8 +11,8 @@
#include <string>
#define LIBMAMBA_VERSION_MAJOR 0
#define LIBMAMBA_VERSION_MINOR 21
#define LIBMAMBA_VERSION_PATCH 2
#define LIBMAMBA_VERSION_MINOR 22
#define LIBMAMBA_VERSION_PATCH 0
// Binary version
#define LIBMAMBA_BINARY_CURRENT 2

View File

@ -1,3 +1,7 @@
libmambapy 0.22.0 (February 25, 2022)
=====================================
libmambapy 0.21.2 (February 14, 2022)
=====================================

View File

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

View File

@ -1,3 +1,10 @@
mamba 0.22.0 (February 25, 2022)
================================
Bug fixes
- Add noarch recompilation step for mamba and micromamba #1511
mamba 0.21.2 (February 14, 2022)
================================

View File

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

View File

@ -1,3 +1,20 @@
micromamba 0.22.0 (February 25, 2022)
=====================================
Bug fixes
- Add noarch recompilation step for mamba and micromamba #1511
- Add `--force-reinstall`, `--only-deps` and `--no-deps` to micromamba #1531
- Tolerate `PATH` being unset better (thanks @chrisburr) #1532
Improvements
- Add `--label` option to micromamba run and automatically generate process names otherwise (thanks @Klaim) #1491, #1530, #1529
- Add `search` as an alias for `repoquery search` (thanks @JohanMabille) #1510
- Fix `repoquery search` not working outside activated environment (thanks @JohanMabille) #1510
- Refactor configuration system (thanks @JohanMabille) #1500
- Fix segfault on Linux with "fake" micromamba activate command #1496
micromamba 0.21.2 (February 14, 2022)
=====================================

View File

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