Skip to content

Commit d212f4a

Browse files
committed
release libmamba 1.4.0, libmambapy 1.4.0, mamba 1.4.0, micromamba 1.4.0
1 parent 034bd71 commit d212f4a

File tree

9 files changed

+152
-6
lines changed

9 files changed

+152
-6
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1+
2023.03.22
2+
==========
3+
4+
Releases: libmamba 1.4.0, libmambapy 1.4.0, mamba 1.4.0, micromamba 1.4.0
5+
6+
Enchancements:
7+
8+
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
9+
- [libmamba, libmambapy, micromamba] Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
10+
- [all] Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
11+
- [libmamba] Added checked numeric cast by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2315
12+
- [libmamba, libmambapy] Activated SAT error messages by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2325
13+
- [libmamba] Added RISC-V support by @dtcxzyw in https://github.com/mamba-org/mamba/pull/2329
14+
- [mamba] Allow the direct installation of both .tar.bz2 and .conda packages by @romain-intel in https://github.com/mamba-org/mamba/pull/2333
15+
- [libmamba, libmambapy] Removed redundant `DependencyInfo` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2314
16+
- [libmamba] Isolate solv::ObjQueue by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2289
17+
- [libmamba] Removed unused libarchive header in fetch by @hind-M in https://github.com/mamba-org/mamba/pull/2341
18+
- [libmamba] Removed duplicated header by @JohanMabille in https://github.com/mamba-org/mamba/pull/2343
19+
- [libmamba] Cleaned `util_string` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2339
20+
- [libmamba, libmambapy, micromamba] Only full shared or full static builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2342
21+
- [libmamba, libmambapy, micromamba] Fixed repoquery commands working with installed packages only by @Hind-M in https://github.com/mamba-org/mamba/pull/2330
22+
- [libmamba] Added a heuristic to better handle the (almost) cyclic Python conflicts by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2318
23+
- [libmamba, libmambapy, mamba] Isolate `PackageInfo` from libsolv from @AntoinePrv in https://github.com/mamba-org/mamba/pull/2340
24+
- [libmamba] Added `strip_if` functions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2344
25+
- [libmamba] Addded conda.rc Options for Existing Remote Settings by @srilman in https://github.com/mamba-org/mamba/pull/2306
26+
- [micromamba] Added micromamba server by @wolfv in https://github.com/mamba-org/mamba/pull/2185
27+
- [libmamba] Hide independent curl code and compression structures in unexposed files by @Hind-M in https://github.com/mamba-org/mamba/pull/2366
28+
- [libmamba] Added `strip_parts` functions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2347
29+
- [libmamba] Added parsing of Conda version by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2373
30+
- [libmamba] Slight refactoring of the utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2387
31+
32+
Bug fixes:
33+
34+
- [libmamba] Fixed invalid reinstall count display by @timostrunk in https://github.com/mamba-org/mamba/pull/2284
35+
- [libmamba] Fixed segmentation fault in case of an invalid package name by @timostrunk in https://github.com/mamba-org/mamba/pull/2287
36+
- [micromamba] Fixed `micromamba env export` to get channel name instead of full url by @Hind-M in https://github.com/mamba-org/mamba/pull/2260
37+
- [mamba] Fixed `mamba init --no-user` by @xylar in https://github.com/mamba-org/mamba/pull/2324
38+
- [libmambapy] Fixed repoquery output of mamba when query format is JSON by @JohanMabille in https://github.com/mamba-org/mamba/pull/2353
39+
- [libmamba] Fixed `to_lower(wchar_t)` and `to_upper(wchar_t)` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2360
40+
- [libmamba] Fixed undefined-behaviors reported by UBSAN by @klaim in https://github.com/mamba-org/mamba/pull/2384
41+
42+
CI fixes & docs:
43+
44+
- [libmamba] Fixed sign warning in tests by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2293
45+
- [micromamba] Added missing dependency in local recipe by @wolfv in https://github.com/mamba-org/mamba/pull/2334
46+
- [mamba] `repoquery depends` requires the package to be installed or to specify a channel by @samtygier in https://github.com/mamba-org/mamba/pull/2098
47+
- [libmamba] Structured test directory layout by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2380
48+
- [micromamba] Fixed Conda Lock Path by @funtion in https://github.com/mamba-org/mamba/pull/2393
49+
50+
151
2023.02.09
252
==========
353

libmamba/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
libmamba 1.4.0 (March 22, 2023)
2+
===============================
3+
4+
Enchancements:
5+
6+
- Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
7+
- Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
8+
- Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
9+
- Added checked numeric cast by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2315
10+
- Activated SAT error messages by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2325
11+
- Added RISC-V support by @dtcxzyw in https://github.com/mamba-org/mamba/pull/2329
12+
- Removed redundant `DependencyInfo` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2314
13+
- Isolate solv::ObjQueue by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2289
14+
- Removed unused libarchive header in fetch by @hind-M in https://github.com/mamba-org/mamba/pull/2341
15+
- Removed duplicated header by @JohanMabille in https://github.com/mamba-org/mamba/pull/2343
16+
- Cleaned `util_string` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2339
17+
- Only full shared or full static builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2342
18+
- Fixed repoquery commands working with installed packages only by @Hind-M in https://github.com/mamba-org/mamba/pull/2330
19+
- Added a heuristic to better handle the (almost) cyclic Python conflicts by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2318
20+
- Isolate `PackageInfo` from libsolv from @AntoinePrv in https://github.com/mamba-org/mamba/pull/2340
21+
- Added `strip_if` functions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2344
22+
- Addded conda.rc Options for Existing Remote Settings by @srilman in https://github.com/mamba-org/mamba/pull/2306
23+
- Hide independent curl code and compression structures in unexposed files by @Hind-M in https://github.com/mamba-org/mamba/pull/2366
24+
- Added `strip_parts` functions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2347
25+
- Added parsing of Conda version by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2373
26+
- Slight refactoring of the utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2387
27+
28+
Bug fixes:
29+
30+
- Fixed invalid reinstall count display by @timostrunk in https://github.com/mamba-org/mamba/pull/2284
31+
- Fixed segmentation fault in case of an invalid package name by @timostrunk in https://github.com/mamba-org/mamba/pull/2287
32+
- Fixed `to_lower(wchar_t)` and `to_upper(wchar_t)` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2360
33+
- Fixed undefined-behaviors reported by UBSAN by @klaim in https://github.com/mamba-org/mamba/pull/2384
34+
35+
CI fixes & docs:
36+
37+
- Fixed sign warning in tests by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2293
38+
- Structured test directory layout by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2380
39+
140
libmamba 1.3.1 (February 09, 2023)
241
==================================
342

libmamba/include/mamba/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <string>
1212

1313
#define LIBMAMBA_VERSION_MAJOR 1
14-
#define LIBMAMBA_VERSION_MINOR 3
15-
#define LIBMAMBA_VERSION_PATCH 1
14+
#define LIBMAMBA_VERSION_MINOR 4
15+
#define LIBMAMBA_VERSION_PATCH 0
1616

1717
// Binary version
1818
#define LIBMAMBA_BINARY_CURRENT 2

libmambapy/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
libmambapy 1.4.0 (March 22, 2023)
2+
=================================
3+
4+
Enchancements:
5+
6+
- Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
7+
- Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
8+
- Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
9+
- Activated SAT error messages by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2325
10+
- Removed redundant `DependencyInfo` by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2314
11+
- Only full shared or full static builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2342
12+
- Fixed repoquery commands working with installed packages only by @Hind-M in https://github.com/mamba-org/mamba/pull/2330
13+
- Isolate `PackageInfo` from libsolv from @AntoinePrv in https://github.com/mamba-org/mamba/pull/2340
14+
15+
Bug fixes:
16+
17+
- Fixed repoquery output of mamba when query format is JSON by @JohanMabille in https://github.com/mamba-org/mamba/pull/2353
18+
119
libmambapy 1.3.1 (February 09, 2023)
220
====================================
321

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

mamba/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
mamba 1.4.0 (March 22, 2023)
2+
============================
3+
4+
Enchancements:
5+
6+
- Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
7+
- Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
8+
- Allow the direct installation of both .tar.bz2 and .conda packages by @romain-intel in https://github.com/mamba-org/mamba/pull/2333
9+
- Isolate `PackageInfo` from libsolv from @AntoinePrv in https://github.com/mamba-org/mamba/pull/2340
10+
11+
Bug fixes:
12+
13+
- Fixed `mamba init --no-user` by @xylar in https://github.com/mamba-org/mamba/pull/2324
14+
15+
CI fixes & docs:
16+
17+
- `repoquery depends` requires the package to be installed or to specify a channel by @samtygier in https://github.com/mamba-org/mamba/pull/2098
18+
119
mamba 1.3.1 (February 09, 2023)
220
===============================
321

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

micromamba/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
micromamba 1.4.0 (March 22, 2023)
2+
=================================
3+
4+
Enchancements:
5+
6+
- Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
7+
- Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
8+
- Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
9+
- Only full shared or full static builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2342
10+
- Fixed repoquery commands working with installed packages only by @Hind-M in https://github.com/mamba-org/mamba/pull/2330
11+
- Added micromamba server by @wolfv in https://github.com/mamba-org/mamba/pull/2185
12+
13+
Bug fixes:
14+
15+
- Fixed `micromamba env export` to get channel name instead of full url by @Hind-M in https://github.com/mamba-org/mamba/pull/2260
16+
17+
CI fixes & docs:
18+
19+
- Added missing dependency in local recipe by @wolfv in https://github.com/mamba-org/mamba/pull/2334
20+
- Fixed Conda Lock Path by @funtion in https://github.com/mamba-org/mamba/pull/2393
21+
122
micromamba 1.3.1 (February 09, 2023)
223
====================================
324

micromamba/src/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <string>
1212

1313
#define UMAMBA_VERSION_MAJOR 1
14-
#define UMAMBA_VERSION_MINOR 3
15-
#define UMAMBA_VERSION_PATCH 1
14+
#define UMAMBA_VERSION_MINOR 4
15+
#define UMAMBA_VERSION_PATCH 0
1616

1717
// Binary version
1818
#define UMAMBA_BINARY_CURRENT 1

0 commit comments

Comments
 (0)