Skip to content

Commit 6ed35f8

Browse files
committed
release libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1
1 parent 4e7bd60 commit 6ed35f8

File tree

9 files changed

+55
-5
lines changed

9 files changed

+55
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1+
2023.03.28
2+
==========
3+
4+
Releases: libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1
5+
6+
Enhancements:
7+
8+
- [libmamba] First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
9+
- [libmamba] Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
10+
- [libmamba] TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
11+
- [libmamba] Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
12+
- [libmamba, micromamba] add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
13+
- [libmamba] Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411
14+
15+
Bug fixes:
16+
17+
- [libmamba] Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397
18+
19+
120
2023.03.22
221
==========
322

423
Releases: libmamba 1.4.0, libmambapy 1.4.0, mamba 1.4.0, micromamba 1.4.0
524

625
Enchancements:
726

8-
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
27+
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
928
- [libmamba, libmambapy, micromamba] Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
1029
- [all] Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
1130
- [libmamba] Added checked numeric cast by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2315

libmamba/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
libmamba 1.4.1 (March 28, 2023)
2+
===============================
3+
4+
Enhancements:
5+
6+
- First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
7+
- Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
8+
- TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
9+
- Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
10+
- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
11+
- Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411
12+
13+
Bug fixes:
14+
15+
- Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397
16+
117
libmamba 1.4.0 (March 22, 2023)
218
===============================
319

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 1
1414
#define LIBMAMBA_VERSION_MINOR 4
15-
#define LIBMAMBA_VERSION_PATCH 0
15+
#define LIBMAMBA_VERSION_PATCH 1
1616

1717
// Binary version
1818
#define LIBMAMBA_BINARY_CURRENT 2

libmambapy/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
libmambapy 1.4.1 (March 28, 2023)
2+
=================================
3+
4+
15
libmambapy 1.4.0 (March 22, 2023)
26
=================================
37

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 = (1, 4, 0)
1+
version_info = (1, 4, 1)
22
__version__ = ".".join(map(str, version_info))

mamba/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
mamba 1.4.1 (March 28, 2023)
2+
============================
3+
4+
15
mamba 1.4.0 (March 22, 2023)
26
============================
37

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 = (1, 4, 0)
1+
version_info = (1, 4, 1)
22
__version__ = ".".join(map(str, version_info))

micromamba/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
micromamba 1.4.1 (March 28, 2023)
2+
=================================
3+
4+
Enhancements:
5+
6+
- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
7+
18
micromamba 1.4.0 (March 22, 2023)
29
=================================
310

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 1
1414
#define UMAMBA_VERSION_MINOR 4
15-
#define UMAMBA_VERSION_PATCH 0
15+
#define UMAMBA_VERSION_PATCH 1
1616

1717
// Binary version
1818
#define UMAMBA_BINARY_CURRENT 1

0 commit comments

Comments
 (0)