Skip to content

Commit

Permalink
release 0.23.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed May 11, 2022
1 parent 421f4c5 commit 4642813
Show file tree
Hide file tree
Showing 9 changed files with 60 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
2022.05.11
==========

Releases: libmamba 0.23.1, libmambapy 0.23.1, mamba 0.23.1, micromamba 0.23.1

Bug fixes
- [micromamba] Fix powershell unset of env vars (thanks @chawyeshu) #1668
- [all] Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- [all] Show reason for multi-download failure (thanks @syslaila) #1652
- [libmamba] Fix platform splitting to work with unknown platforms #1662
- [libmamba] Create prefix before writing the config file #1662
- [libmamba] Retry HTTP request on 413 & 429, respect Retry-After header (thanks @kenodegard) #1661
- [mamba] Add high-level Python API (thanks @martinRenou) #1656
- [libmamba] Initialize curl (thanks @Klaim) #1648
- [libmamba] Replace thread detaching by thread joining before main's end (thanks @Klaim) #1637


2022.04.21
==========

Expand Down
13 changes: 13 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
libmamba 0.23.1 (May 11, 2022)
==============================

Bug fixes

- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652
- Fix platform splitting to work with unknown platforms #1662
- Create prefix before writing the config file #1662
- Retry HTTP request on 413 & 429, respect Retry-After header (thanks @kenodegard) #1661
- Initialize curl (thanks @Klaim) #1648
- Replace thread detaching by thread joining before main's end (thanks @Klaim) #1637

libmamba 0.23.0 (April 21, 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 @@ -12,7 +12,7 @@

#define LIBMAMBA_VERSION_MAJOR 0
#define LIBMAMBA_VERSION_MINOR 23
#define LIBMAMBA_VERSION_PATCH 0
#define LIBMAMBA_VERSION_PATCH 1

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
8 changes: 8 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
libmambapy 0.23.1 (May 11, 2022)
================================

Bug fixes

- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652

libmambapy 0.23.0 (April 21, 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, 23, 0)
version_info = (0, 23, 1)
__version__ = ".".join(map(str, version_info))
9 changes: 9 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mamba 0.23.1 (May 11, 2022)
===========================

Bug fixes

- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652
- Add high-level Python API (thanks @martinRenou) #1656

mamba 0.23.0 (April 21, 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, 23, 0)
version_info = (0, 23, 1)
__version__ = ".".join(map(str, version_info))
9 changes: 9 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
micromamba 0.23.1 (May 11, 2022)
================================

Bug fixes

- Fix powershell unset of env vars (thanks @chawyeshu) #1668
- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652

micromamba 0.23.0 (April 21, 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 @@ -12,7 +12,7 @@

#define UMAMBA_VERSION_MAJOR 0
#define UMAMBA_VERSION_MINOR 23
#define UMAMBA_VERSION_PATCH 0
#define UMAMBA_VERSION_PATCH 1

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 4642813

Please sign in to comment.