From f4ab0b237700053ab71d068d60c9751cd5bf593d Mon Sep 17 00:00:00 2001 From: Hind Montassif Date: Mon, 19 Aug 2024 09:16:57 +0200 Subject: [PATCH] release libmamba 2.0.0rc2, libmambapy 2.0.0rc2, micromamba 2.0.0rc2 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ libmamba/CHANGELOG.md | 25 +++++++++++++++++++++++++ libmambapy/CHANGELOG.md | 14 ++++++++++++++ micromamba/CHANGELOG.md | 19 +++++++++++++++++++ 4 files changed, 86 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89843cc6f8..519e509948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +2024.08.19 +========== + +Releases: libmamba 2.0.0rc2, libmambapy 2.0.0rc2, micromamba 2.0.0rc2 + +Enhancements: + +- [micromamba] test: Adapt test_explicit_export_topologically_sorted by @jjerphan in https://github.com/mamba-org/mamba/pull/3377 +- [libmamba] test: Comparability and hashability of `PackageInfo` and `MatchSpec` by @jjerphan in https://github.com/mamba-org/mamba/pull/3369 +- [libmamba] build: Support fmt 11 (follow-up) by @jjerphan in https://github.com/mamba-org/mamba/pull/3371 +- [libmamba, micromamba] build: Support fmt 11 by @jjerphan in https://github.com/mamba-org/mamba/pull/3368 +- [libmamba] Make more classes hashable and comparable by @jjerphan in https://github.com/mamba-org/mamba/pull/3363 +- [libmambapy, libmamba] Replace `Context` with `Context::platform` where possible by @jjerphan in https://github.com/mamba-org/mamba/pull/3364 + +Bug fixes: + +- [libmamba, micromamba] [micromamba] Fix behavior of `env update` (to mimick conda) by @Hind-M in https://github.com/mamba-org/mamba/pull/3396 +- [libmamba] Reset the prompt back to default by @cvanelteren in https://github.com/mamba-org/mamba/pull/3392 +- [libmamba] Add missing header by @Hind-M in https://github.com/mamba-org/mamba/pull/3389 +- [libmamba] Restore previous behavior of `MAMBA_ROOT_PREFIX` by @Hind-M in https://github.com/mamba-org/mamba/pull/3365 + +CI fixes and doc: + +- [all] [win-64] Remove workaround by @Hind-M in https://github.com/mamba-org/mamba/pull/3398 +- [all] [win-64] Add constraint on fmt by @Hind-M in https://github.com/mamba-org/mamba/pull/3400 +- [all] Unpin cryptography, python, and add make to environment-dev.yml by @jaimergp in https://github.com/mamba-org/mamba/pull/3352 +- [all] ci: Unpin libcxx <18 by @jjerphan in https://github.com/mamba-org/mamba/pull/3375 + 2024.07.26 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index 54db0b31dc..c13d805870 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,28 @@ +libmamba 2.0.0rc2 (August 19, 2024) +=================================== + +Enhancements: + +- test: Comparability and hashability of `PackageInfo` and `MatchSpec` by @jjerphan in https://github.com/mamba-org/mamba/pull/3369 +- build: Support fmt 11 (follow-up) by @jjerphan in https://github.com/mamba-org/mamba/pull/3371 +- build: Support fmt 11 by @jjerphan in https://github.com/mamba-org/mamba/pull/3368 +- Make more classes hashable and comparable by @jjerphan in https://github.com/mamba-org/mamba/pull/3363 +- Replace `Context` with `Context::platform` where possible by @jjerphan in https://github.com/mamba-org/mamba/pull/3364 + +Bug fixes: + +- [micromamba] Fix behavior of `env update` (to mimick conda) by @Hind-M in https://github.com/mamba-org/mamba/pull/3396 +- Reset the prompt back to default by @cvanelteren in https://github.com/mamba-org/mamba/pull/3392 +- Add missing header by @Hind-M in https://github.com/mamba-org/mamba/pull/3389 +- Restore previous behavior of `MAMBA_ROOT_PREFIX` by @Hind-M in https://github.com/mamba-org/mamba/pull/3365 + +CI fixes and doc: + +- [win-64] Remove workaround by @Hind-M in https://github.com/mamba-org/mamba/pull/3398 +- [win-64] Add constraint on fmt by @Hind-M in https://github.com/mamba-org/mamba/pull/3400 +- Unpin cryptography, python, and add make to environment-dev.yml by @jaimergp in https://github.com/mamba-org/mamba/pull/3352 +- ci: Unpin libcxx <18 by @jjerphan in https://github.com/mamba-org/mamba/pull/3375 + libmamba 2.0.0rc1 (July 26, 2024) ================================= diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index ac4c3f7f3d..dde6488de3 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,17 @@ +libmambapy 2.0.0rc2 (August 19, 2024) +===================================== + +Enhancements: + +- Replace `Context` with `Context::platform` where possible by @jjerphan in https://github.com/mamba-org/mamba/pull/3364 + +CI fixes and doc: + +- [win-64] Remove workaround by @Hind-M in https://github.com/mamba-org/mamba/pull/3398 +- [win-64] Add constraint on fmt by @Hind-M in https://github.com/mamba-org/mamba/pull/3400 +- Unpin cryptography, python, and add make to environment-dev.yml by @jaimergp in https://github.com/mamba-org/mamba/pull/3352 +- ci: Unpin libcxx <18 by @jjerphan in https://github.com/mamba-org/mamba/pull/3375 + libmambapy 2.0.0rc1 (July 26, 2024) =================================== diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 346174f3e0..9a71008c2b 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,22 @@ +micromamba 2.0.0rc2 (August 19, 2024) +===================================== + +Enhancements: + +- test: Adapt test_explicit_export_topologically_sorted by @jjerphan in https://github.com/mamba-org/mamba/pull/3377 +- build: Support fmt 11 by @jjerphan in https://github.com/mamba-org/mamba/pull/3368 + +Bug fixes: + +- [micromamba] Fix behavior of `env update` (to mimick conda) by @Hind-M in https://github.com/mamba-org/mamba/pull/3396 + +CI fixes and doc: + +- [win-64] Remove workaround by @Hind-M in https://github.com/mamba-org/mamba/pull/3398 +- [win-64] Add constraint on fmt by @Hind-M in https://github.com/mamba-org/mamba/pull/3400 +- Unpin cryptography, python, and add make to environment-dev.yml by @jaimergp in https://github.com/mamba-org/mamba/pull/3352 +- ci: Unpin libcxx <18 by @jjerphan in https://github.com/mamba-org/mamba/pull/3375 + micromamba 2.0.0rc1 (July 26, 2024) ===================================