Skip to content

Commit

Permalink
release libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Mar 28, 2023
1 parent 4e7bd60 commit 6ed35f8
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 5 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
2023.03.28
==========

Releases: libmamba 1.4.1, libmambapy 1.4.1, mamba 1.4.1, micromamba 1.4.1

Enhancements:

- [libmamba] First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
- [libmamba] Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
- [libmamba] TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
- [libmamba] Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
- [libmamba, micromamba] add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
- [libmamba] Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411

Bug fixes:

- [libmamba] Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397


2023.03.22
==========

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

Enchancements:

- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
- [all] Implemented recursive dependency printout in repoquery by @timostrunk in https://github.com/mamba-org/mamba/pull/2283
- [libmamba, libmambapy, micromamba] Agressive compilation warnings by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2304
- [all] Fine tune clang-format by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2290
- [libmamba] Added checked numeric cast by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2315
Expand Down
16 changes: 16 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
libmamba 1.4.1 (March 28, 2023)
===============================

Enhancements:

- First version/steps of unraveling fetch code and wrapping libcurl by @Hind-M in https://github.com/mamba-org/mamba/pull/2376
- Parse repodata.json by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2391
- TimeRef is not a singleton anymore by @Klaim in https://github.com/mamba-org/mamba/pull/2396
- Handle url via ChannelBuilder in Repo constructor by @jaimergp in https://github.com/mamba-org/mamba/pull/2398
- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385
- Renamed validate namespace to `mamba::validation by @Klaim in https://github.com/mamba-org/mamba/pull/2411

Bug fixes:

- Fixed build with older Clang by @ZhongRuoyu in https://github.com/mamba-org/mamba/pull/2397

libmamba 1.4.0 (March 22, 2023)
===============================

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 1
#define LIBMAMBA_VERSION_MINOR 4
#define LIBMAMBA_VERSION_PATCH 0
#define LIBMAMBA_VERSION_PATCH 1

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
4 changes: 4 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
libmambapy 1.4.1 (March 28, 2023)
=================================


libmambapy 1.4.0 (March 22, 2023)
=================================

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 = (1, 4, 0)
version_info = (1, 4, 1)
__version__ = ".".join(map(str, version_info))
4 changes: 4 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
mamba 1.4.1 (March 28, 2023)
============================


mamba 1.4.0 (March 22, 2023)
============================

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 = (1, 4, 0)
version_info = (1, 4, 1)
__version__ = ".".join(map(str, version_info))
7 changes: 7 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
micromamba 1.4.1 (March 28, 2023)
=================================

Enhancements:

- add option to relocate prefix by @DerThorsten in https://github.com/mamba-org/mamba/pull/2385

micromamba 1.4.0 (March 22, 2023)
=================================

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 1
#define UMAMBA_VERSION_MINOR 4
#define UMAMBA_VERSION_PATCH 0
#define UMAMBA_VERSION_PATCH 1

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 6ed35f8

Please sign in to comment.