From 795734fb7fd722b419de6cca2fe5c6b5950ae943 Mon Sep 17 00:00:00 2001 From: Johan Mabille Date: Thu, 24 Aug 2023 09:24:26 +0200 Subject: [PATCH] release libmamba 1.5.0, libmambapy 1.5.0, mamba 1.5.0, micromamba 1.5.0 --- CHANGELOG.md | 55 ++++++++++++++++++++++++++++++ libmamba/CHANGELOG.md | 34 ++++++++++++++++++ libmamba/include/mamba/version.hpp | 4 +-- libmambapy/CHANGELOG.md | 13 +++++++ libmambapy/libmambapy/_version.py | 2 +- mamba/CHANGELOG.md | 23 +++++++++++++ mamba/mamba/_version.py | 2 +- micromamba/CHANGELOG.md | 31 +++++++++++++++++ micromamba/src/version.hpp | 4 +-- 9 files changed, 162 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 386af16caf..cc7eb235d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,58 @@ +2023.08.23 +========== + +Releases: libmamba 1.5.0, libmambapy 1.5.0, mamba 1.5.0, micromamba 1.5.0 + +Enhancements: + +- [libmamba] All headers at the top by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2658 +- [libmamba] Add boolean expression tree by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2591 +- [libmamba] Add VersionSpec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2502 +- [micromamba] Refactor test_repoquery to use new fixtures by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2691 +- [libmamba] Use xdg schemas for config saving/reading (minified) by @danpf in https://github.com/mamba-org/mamba/pull/2714 +- [micromamba] Remove warnings from test_activation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2727 +- [micromamba] Refactor test_shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2726 +- [libmamba] specs platform by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2729 +- [libmamba] Safe Curl opt in url.cpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2734 +- [libmamba] Add win-arm64 support by @isuruf in https://github.com/mamba-org/mamba/pull/2745 +- [libmamba] Move util_string to utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2739 +- [libmamba] Remove get_clean_dirs() by @jonashaag in https://github.com/mamba-org/mamba/pull/2748 +- [micromamba] Fix and improve static builds by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2755 +- [all] Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759 +- [libmamba, micromamba] Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744 +- [all] Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760 +- [libmamba] New apis for downloading by @JohanMabille in https://github.com/mamba-org/mamba/pull/2695 + +Bug fixes: + +- [libmamba] Respect subdir in match spec by @ThomasBlauthQC in https://github.com/mamba-org/mamba/pull/2300 +- [libmamba] Fixed move constructor in CURLHandle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2710 +- [micromamba] Fix wrong activated PATH in micromamba shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2722 +- [mamba] Fix Repo missing url by @Hind-M in https://github.com/mamba-org/mamba/pull/2723 +- [mamba] Try Revert "Fix Repo missing url" by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2730 +- [mamba] fix subcommands handling in recent versions of conda by @jaimergp in https://github.com/mamba-org/mamba/pull/2732 +- [libmamba] Remove created prefix if aborted with --platform by @Hind-M in https://github.com/mamba-org/mamba/pull/2738 +- [libmamba] Add missing newline in legacy errors by @jaimergp in https://github.com/mamba-org/mamba/pull/2743 +- [mamba] Try fix Missing Url error by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2731 +- [libmamba] fix: added missing hook_preamble() for powershell hook by @chawyehsu in https://github.com/mamba-org/mamba/pull/2761 +- [micromamba] Fix config list sources by @Hind-M in https://github.com/mamba-org/mamba/pull/2756 +- [libmamba] Fix fish completion by @soraxas in https://github.com/mamba-org/mamba/pull/2769 +- [libmamba, micromamba] Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749 +- [micromamba] Strong pin in test by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2774 +- [mamba] fix: only reactivate current environment by @chawyehsu in https://github.com/mamba-org/mamba/pull/2763 +- [micromamba] Revert failing test by @jonashaag in https://github.com/mamba-org/mamba/pull/2777 + +CI fixes and doc: + +- [mamba, micromamba] Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675 +- [all] Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690 +- [mamba] Put more "not recommended" warnings in the installation instructions by @jonashaag in https://github.com/mamba-org/mamba/pull/2711 +- [micromamba] Add command to docs for completeness by @danpf in https://github.com/mamba-org/mamba/pull/2717 +- [micromamba] fix: Correct a command in installation.rst by @wy-luke in https://github.com/mamba-org/mamba/pull/2703 +- [micromamba] Split Mamba and Micromamba installation docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2719 +- [micromamba] fix: Shell completion section title missing by @wy-luke in https://github.com/mamba-org/mamba/pull/2764 +- [all] Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762 + 2023.07.13 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index a4d3cc499c..017903dcf5 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,37 @@ +libmamba 1.5.0 (August 24, 2023) +================================ + +Enhancements: + +- All headers at the top by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2658 +- Add boolean expression tree by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2591 +- Add VersionSpec by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2502 +- Use xdg schemas for config saving/reading (minified) by @danpf in https://github.com/mamba-org/mamba/pull/2714 +- specs platform by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2729 +- Safe Curl opt in url.cpp by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2734 +- Add win-arm64 support by @isuruf in https://github.com/mamba-org/mamba/pull/2745 +- Move util_string to utility library by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2739 +- Remove get_clean_dirs() by @jonashaag in https://github.com/mamba-org/mamba/pull/2748 +- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759 +- Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744 +- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760 +- New apis for downloading by @JohanMabille in https://github.com/mamba-org/mamba/pull/2695 + +Bug fixes: + +- Respect subdir in match spec by @ThomasBlauthQC in https://github.com/mamba-org/mamba/pull/2300 +- Fixed move constructor in CURLHandle by @JohanMabille in https://github.com/mamba-org/mamba/pull/2710 +- Remove created prefix if aborted with --platform by @Hind-M in https://github.com/mamba-org/mamba/pull/2738 +- Add missing newline in legacy errors by @jaimergp in https://github.com/mamba-org/mamba/pull/2743 +- fix: added missing hook_preamble() for powershell hook by @chawyehsu in https://github.com/mamba-org/mamba/pull/2761 +- Fix fish completion by @soraxas in https://github.com/mamba-org/mamba/pull/2769 +- Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749 + +CI fixes and doc: + +- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690 +- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762 + libmamba 1.4.9 (July 13, 2023) ============================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index 1a87fcd7d0..11acd3d54b 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -11,8 +11,8 @@ #include #define LIBMAMBA_VERSION_MAJOR 1 -#define LIBMAMBA_VERSION_MINOR 4 -#define LIBMAMBA_VERSION_PATCH 9 +#define LIBMAMBA_VERSION_MINOR 5 +#define LIBMAMBA_VERSION_PATCH 0 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 3fef6d66b6..73f1e8a323 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,16 @@ +libmambapy 1.5.0 (August 24, 2023) +================================== + +Enhancements: + +- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759 +- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760 + +CI fixes and doc: + +- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690 +- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762 + libmambapy 1.4.9 (July 13, 2023) ================================ diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index a47071cee8..60cab768da 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 4, 9) +version_info = (1, 5, 0) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index 0380edcbf7..8b0275cd6c 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -1,3 +1,26 @@ +mamba 1.5.0 (August 24, 2023) +============================= + +Enhancements: + +- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759 +- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760 + +Bug fixes: + +- Fix Repo missing url by @Hind-M in https://github.com/mamba-org/mamba/pull/2723 +- Try Revert "Fix Repo missing url" by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2730 +- fix subcommands handling in recent versions of conda by @jaimergp in https://github.com/mamba-org/mamba/pull/2732 +- Try fix Missing Url error by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2731 +- fix: only reactivate current environment by @chawyehsu in https://github.com/mamba-org/mamba/pull/2763 + +CI fixes and doc: + +- Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675 +- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690 +- Put more "not recommended" warnings in the installation instructions by @jonashaag in https://github.com/mamba-org/mamba/pull/2711 +- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762 + mamba 1.4.9 (July 13, 2023) =========================== diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index a47071cee8..60cab768da 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 4, 9) +version_info = (1, 5, 0) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index 1bfd29add0..f9174866a8 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,34 @@ +micromamba 1.5.0 (August 24, 2023) +================================== + +Enhancements: + +- Refactor test_repoquery to use new fixtures by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2691 +- Remove warnings from test_activation by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2727 +- Refactor test_shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2726 +- Fix and improve static builds by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2755 +- Enable pytest color output by @jonashaag in https://github.com/mamba-org/mamba/pull/2759 +- Isolate URL object by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2744 +- Fix warnings by @Hind-M in https://github.com/mamba-org/mamba/pull/2760 + +Bug fixes: + +- Fix wrong activated PATH in micromamba shell by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2722 +- Fix config list sources by @Hind-M in https://github.com/mamba-org/mamba/pull/2756 +- Fix \_\_linux virtual package default version by jonashaag in https://github.com/mamba-org/mamba/pull/2749 +- Strong pin in test by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2774 +- Revert failing test by @jonashaag in https://github.com/mamba-org/mamba/pull/2777 + +CI fixes and doc: + +- Update troubleshooting.rst by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2675 +- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690 +- Add command to docs for completeness by @danpf in https://github.com/mamba-org/mamba/pull/2717 +- fix: Correct a command in installation.rst by @wy-luke in https://github.com/mamba-org/mamba/pull/2703 +- Split Mamba and Micromamba installation docs by @jonashaag in https://github.com/mamba-org/mamba/pull/2719 +- fix: Shell completion section title missing by @wy-luke in https://github.com/mamba-org/mamba/pull/2764 +- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762 + micromamba 1.4.9 (July 13, 2023) ================================ diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index 7890abd984..2393199637 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -11,8 +11,8 @@ #include #define UMAMBA_VERSION_MAJOR 1 -#define UMAMBA_VERSION_MINOR 4 -#define UMAMBA_VERSION_PATCH 9 +#define UMAMBA_VERSION_MINOR 5 +#define UMAMBA_VERSION_PATCH 0 // Binary version #define UMAMBA_BINARY_CURRENT 1