Skip to content

Commit

Permalink
release 0.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv committed May 20, 2022
1 parent c124c4c commit d992bd6
Show file tree
Hide file tree
Showing 9 changed files with 65 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
2022.05.20
==========

Releases: libmamba 0.23.3, libmambapy 0.23.3, mamba 0.23.3, micromamba 0.23.3

Bug fixes
- [micromamba] Fix summing behavior of `-v` flags #1690
- [all] fix curl callback to not exit anymore but report a proper error #1684
- [micromamba] fix up explicit installation by using proper variables #1677
- [libmamba] fix channel prefix test (thanks @jonashaag) #1674
- [mamba] fix strict priority for `mamba create env ...` #1688

Improvements
- [micromamba] make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686
- [libmamba] various Windows / CMake improvements #1683
- [libmamba] various warnings fixed on Windows and Unix #1683, 1691
- [libmamba] fix yaml-cpp linkage #1678


2022.05.12
==========

Expand Down
14 changes: 14 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
libmamba 0.23.3 (May 20, 2022)
==============================

Bug fixes

- fix curl callback to not exit anymore but report a proper error #1684
- fix channel prefix test (thanks @jonashaag) #1674

Improvements

- various Windows / CMake improvements #1683
- various warnings fixed on Windows and Unix #1683, 1691
- fix yaml-cpp linkage #1678

libmamba 0.23.1 (May 11, 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 1
#define LIBMAMBA_VERSION_PATCH 3

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

Bug fixes

- fix curl callback to not exit anymore but report a proper error #1684

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

Bug fixes

- fix curl callback to not exit anymore but report a proper error #1684
- fix strict priority for `mamba create env ...` #1688

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

Bug fixes

- Fix summing behavior of `-v` flags #1690
- fix curl callback to not exit anymore but report a proper error #1684
- fix up explicit installation by using proper variables #1677

Improvements

- make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686

micromamba 0.23.2 (May 12, 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 2
#define UMAMBA_VERSION_PATCH 3

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit d992bd6

Please sign in to comment.