release libmamba 1.4.2, libmambapy 1.4.2, mamba 1.4.2, micromamba 1.4.2

This commit is contained in:
Johan Mabille 2023-04-06 14:58:37 +02:00
parent 4a9dea06eb
commit 30ca2e2d5d
9 changed files with 93 additions and 5 deletions

View File

@ -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
==========
@ -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:

View File

@ -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)
===============================

View File

@ -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

View File

@ -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)
=================================

View File

@ -1,2 +1,2 @@
version_info = (1, 4, 1)
version_info = (1, 4, 2)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
============================

View File

@ -1,2 +1,2 @@
version_info = (1, 4, 1)
version_info = (1, 4, 2)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
=================================

View File

@ -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