Skip to content

Commit d992bd6

Browse files
committed
release 0.23.3
1 parent c124c4c commit d992bd6

File tree

9 files changed

+65
-4
lines changed

9 files changed

+65
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2022.05.20
2+
==========
3+
4+
Releases: libmamba 0.23.3, libmambapy 0.23.3, mamba 0.23.3, micromamba 0.23.3
5+
6+
Bug fixes
7+
- [micromamba] Fix summing behavior of `-v` flags #1690
8+
- [all] fix curl callback to not exit anymore but report a proper error #1684
9+
- [micromamba] fix up explicit installation by using proper variables #1677
10+
- [libmamba] fix channel prefix test (thanks @jonashaag) #1674
11+
- [mamba] fix strict priority for `mamba create env ...` #1688
12+
13+
Improvements
14+
- [micromamba] make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686
15+
- [libmamba] various Windows / CMake improvements #1683
16+
- [libmamba] various warnings fixed on Windows and Unix #1683, 1691
17+
- [libmamba] fix yaml-cpp linkage #1678
18+
19+
120
2022.05.12
221
==========
322

libmamba/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
libmamba 0.23.3 (May 20, 2022)
2+
==============================
3+
4+
Bug fixes
5+
6+
- fix curl callback to not exit anymore but report a proper error #1684
7+
- fix channel prefix test (thanks @jonashaag) #1674
8+
9+
Improvements
10+
11+
- various Windows / CMake improvements #1683
12+
- various warnings fixed on Windows and Unix #1683, 1691
13+
- fix yaml-cpp linkage #1678
14+
115
libmamba 0.23.1 (May 11, 2022)
216
==============================
317

libmamba/include/mamba/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#define LIBMAMBA_VERSION_MAJOR 0
1414
#define LIBMAMBA_VERSION_MINOR 23
15-
#define LIBMAMBA_VERSION_PATCH 1
15+
#define LIBMAMBA_VERSION_PATCH 3
1616

1717
// Binary version
1818
#define LIBMAMBA_BINARY_CURRENT 2

libmambapy/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
libmambapy 0.23.3 (May 20, 2022)
2+
================================
3+
4+
Bug fixes
5+
6+
- fix curl callback to not exit anymore but report a proper error #1684
7+
18
libmambapy 0.23.1 (May 11, 2022)
29
================================
310

libmambapy/libmambapy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 23, 1)
1+
version_info = (0, 23, 3)
22
__version__ = ".".join(map(str, version_info))

mamba/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
mamba 0.23.3 (May 20, 2022)
2+
===========================
3+
4+
Bug fixes
5+
6+
- fix curl callback to not exit anymore but report a proper error #1684
7+
- fix strict priority for `mamba create env ...` #1688
8+
19
mamba 0.23.1 (May 11, 2022)
210
===========================
311

mamba/mamba/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 23, 1)
1+
version_info = (0, 23, 3)
22
__version__ = ".".join(map(str, version_info))

micromamba/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
micromamba 0.23.3 (May 20, 2022)
2+
================================
3+
4+
Bug fixes
5+
6+
- Fix summing behavior of `-v` flags #1690
7+
- fix curl callback to not exit anymore but report a proper error #1684
8+
- fix up explicit installation by using proper variables #1677
9+
10+
Improvements
11+
12+
- make clean_force_pkgs respect `-y` flag (thanks @Patricol) #1686
13+
114
micromamba 0.23.2 (May 12, 2022)
215
================================
316

micromamba/src/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#define UMAMBA_VERSION_MAJOR 0
1414
#define UMAMBA_VERSION_MINOR 23
15-
#define UMAMBA_VERSION_PATCH 2
15+
#define UMAMBA_VERSION_PATCH 3
1616

1717
// Binary version
1818
#define UMAMBA_BINARY_CURRENT 1

0 commit comments

Comments
 (0)