Skip to content

Commit

Permalink
release libmamba 1.4.2, libmambapy 1.4.2, mamba 1.4.2, micromamba 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JohanMabille committed Apr 6, 2023
1 parent 4a9dea0 commit 30ca2e2
Show file tree
Hide file tree
Showing 9 changed files with 93 additions and 5 deletions.
32 changes: 31 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
2023.04.06
==========

Releases: libmamba 1.4.2, libmambapy 1.4.2, mamba 1.4.2, micromamba 1.4.2

Enhancements:

- [libmamba] Small libsolv improvements by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2399
- [micromamba] Refactor test\_create, test\_proxy, and test\_env for test isolation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2416
- [libmamba] Improve message after the env creating with micromamba by @xmnlab in https://github.com/mamba-org/mamba/pull/2425
- [libmamba] Use custom function to properly parse matchspec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2433
- [libmamba, micromamba] Remove const ref to string\_view in codebase by @Hind-M in https://github.com/mamba-org/mamba/pull/2440
- [libmamba] Wrap more libcurl calls by @Hind-M in https://github.com/mamba-org/mamba/pull/2421

Bug fixes:

- [libmamba] Fix PKG\_BUILDNUM env variable for post-link scripts by nsoranzo in https://github.com/mamba-org/mamba/pull/2420
- [libmamba] Solve a corner case in the SAT error messages by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2423
- [libmamba] Windows: Fixed environment variables not read as unicode by @Klaim in https://github.com/mamba-org/mamba/pull/2417
- [libmamba] Fix segfault in add\_pin/all\_problems\_structured by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2428
- [mamba] Safely ignores virtual packages in `compute_final_precs` function by @mariusvniekerk in https://github.com/mamba-org/mamba/pull/2424

CI fixes and doc:

- [libmambapy, micromamba] Fixes typos by @nsoranzo in https://github.com/mamba-org/mamba/pull/2419
- [micromamba] Remove outdated micromamba experimental warning by @jonashaag in https://github.com/mamba-org/mamba/pull/2430
- [libmamba] Replaced libtool 2.4.6\_9 with libtool 2.4.7-3 in vcpkg builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2439
- [all] Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436


2023.03.28
==========

Expand All @@ -10,7 +40,7 @@ Enhancements:
- [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
- [libmamba] Renamed validate namespace to `mamba::validation` by @Klaim in https://github.com/mamba-org/mamba/pull/2411

Bug fixes:

Expand Down
23 changes: 23 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
libmamba 1.4.2 (April 06, 2023)
===============================

Enhancements:

- Small libsolv improvements by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2399
- Improve message after the env creating with micromamba by @xmnlab in https://github.com/mamba-org/mamba/pull/2425
- Use custom function to properly parse matchspec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2433
- Remove const ref to string\_view in codebase by @Hind-M in https://github.com/mamba-org/mamba/pull/2440
- Wrap more libcurl calls by @Hind-M in https://github.com/mamba-org/mamba/pull/2421

Bug fixes:

- Fix PKG\_BUILDNUM env variable for post-link scripts by nsoranzo in https://github.com/mamba-org/mamba/pull/2420
- Solve a corner case in the SAT error messages by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2423
- Windows: Fixed environment variables not read as unicode by @Klaim in https://github.com/mamba-org/mamba/pull/2417
- Fix segfault in add\_pin/all\_problems\_structured by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2428

CI fixes and doc:

- Replaced libtool 2.4.6\_9 with libtool 2.4.7-3 in vcpkg builds by @JohanMabille in https://github.com/mamba-org/mamba/pull/2439
- Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436

libmamba 1.4.1 (March 28, 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 1
#define LIBMAMBA_VERSION_PATCH 2

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
9 changes: 9 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
libmambapy 1.4.2 (April 06, 2023)
=================================


CI fixes and doc:

- Fixes typos by @nsoranzo in https://github.com/mamba-org/mamba/pull/2419
- Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436

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


Bug fixes:

- Safely ignores virtual packages in `compute_final_precs` function by @mariusvniekerk in https://github.com/mamba-org/mamba/pull/2424

CI fixes and doc:

- Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436

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

Enhancements:

- Refactor test\_create, test\_proxy, and test\_env for test isolation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2416
- Remove const ref to string\_view in codebase by @Hind-M in https://github.com/mamba-org/mamba/pull/2440

CI fixes and doc:

- Fixes typos by @nsoranzo in https://github.com/mamba-org/mamba/pull/2419
- Remove outdated micromamba experimental warning by @jonashaag in https://github.com/mamba-org/mamba/pull/2430
- Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436

micromamba 1.4.1 (March 28, 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 1
#define UMAMBA_VERSION_PATCH 2

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 30ca2e2

Please sign in to comment.