From 3390da9ab93424fd40d7584ea869b6ef27e212f8 Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Mon, 16 Jan 2023 10:20:00 +0100 Subject: [PATCH] release libmamba 1.2.0, libmambapy 1.2.0, mamba 1.2.0, micromamba 1.2.0 --- CHANGELOG.md | 47 ++++++++++++++++++++++++++++++ libmamba/CHANGELOG.md | 40 +++++++++++++++++++++++++ libmamba/include/mamba/version.hpp | 2 +- libmambapy/CHANGELOG.md | 23 +++++++++++++++ libmambapy/libmambapy/_version.py | 2 +- mamba/CHANGELOG.md | 29 ++++++++++++++++++ mamba/mamba/_version.py | 2 +- micromamba/CHANGELOG.md | 39 +++++++++++++++++++++++++ micromamba/src/version.hpp | 2 +- 9 files changed, 182 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f18fe958e..583672f4d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,50 @@ +2023.01.16 +========== + +Releases: libmamba 1.2.0, libmambapy 1.2.0, mamba 1.2.0, micromamba 1.2.0 + +This release contains some speed improvements: download repodata faster as zstd encoded files (configure using +`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix +with spaces works better thanks to a new "shebang" style and the `micromamba package compress` and `transmute` +commands produce better conda packages. + +Enhancements: + +- [micromamba, libmamba] Make tarballs look more similar to conda-package-handling by @wolfv in #2177, #2217 +- [micromamba, libmamba] Use new shebang style by @wolfv in #2211 +- [micromamba, libmamba] Faster conda decompress by @wolfv in #2200 +- [micromamba, libmamba] Initial repodata.zst support by @wolfv & @jonashaag in #2113 + +Bug fixes: + +- [micromamba, libmamba] log warnings but ignore cyclic symlinks by @wolfv in #2212 +- [mamba] Add Context binding for experimental_sat_error_message by @syslaila in #2143 +- [libmamba] Error messages improvements by @AntoinePrv in #2149 +- [micromamba, libmamba] Report failure when packages to remove don't exist. (#2131) by @Klaim in #2132 +- [libmamba] Fixing typo in solver errors by @shughes-uk in #2168 +- [micromamba] Fix micromamba shell completion when running 'shell hook' directly by @TomiBelan in #2137 +- [libmamba] Extend `last_write_time` implementation by special-casing file touching by @coroa in #2141 +- [libmamba, micromamba] Don't create a prefix which is missing conda-meta by @maresb in #2162 +- [libmamba, micromamba, mamba] Fix `custom_channels` parsing by @XuehaiPan in #2207 +- [micromamba] Fix #1783: Add `micromamba env create` by @jonashaag in #1790 +- [mamba] Use check_allowlist from conda by @duncanmmacleod in #2220 + +CI fixes & docs: + +- Improve build env cleanup by @jonashaag in #2213 +- Run conda_nightly once per week by @jonashaag in #2147 +- Update doc by @Hind-M in #2156 +- Use Conda canary in nightly tests by @jonashaag in #2180 +- Expliclity point to libmamba test data independently of cwd by @AntoinePrv in #2158 +- Add bug report issue template by @jonashaag in #2182 +- Downgrade curl to fix micromamba on macOS x64 by @wolfv in #2205 +- Use conda-forge micromamba feedstock instead of a fork by @JohanMabille in #2206 +- Update pre-commit versions by @jonashaag in #2178 +- Use local meta.yaml by @wolfv in #2214 +- Remove feedstock patches by @wolfv in #2216 +- Fixed static dependency order by @JohanMabille in #2201 + + 2022.11.25 ========== diff --git a/libmamba/CHANGELOG.md b/libmamba/CHANGELOG.md index 7e1f8e7c46..036cc3ad9c 100644 --- a/libmamba/CHANGELOG.md +++ b/libmamba/CHANGELOG.md @@ -1,3 +1,43 @@ +libmamba 1.2.0 (January 16, 2023) +================================= + +This release contains some speed improvements: download repodata faster as zstd encoded files (configure using +`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix +with spaces works better thanks to a new "shebang" style and the `micromamba package compress` and `transmute` +commands produce better conda packages. + +Enhancements: + +- Make tarballs look more similar to conda-package-handling by @wolfv in #2177, #2217 +- Use new shebang style by @wolfv in #2211 +- Faster conda decompress by @wolfv in #2200 +- Initial repodata.zst support by @wolfv & @jonashaag in #2113 + +Bug fixes: + +- log warnings but ignore cyclic symlinks by @wolfv in #2212 +- Error messages improvements by @AntoinePrv in #2149 +- Report failure when packages to remove don't exist. (#2131) by @Klaim in #2132 +- Fixing typo in solver errors by @shughes-uk in #2168 +- Extend `last_write_time` implementation by special-casing file touching by @coroa in #2141 +- Don't create a prefix which is missing conda-meta by @maresb in #2162 +- Fix `custom_channels` parsing by @XuehaiPan in #2207 + +CI fixes & docs: + +- - Improve build env cleanup by @jonashaag in #2213 +- - Run conda_nightly once per week by @jonashaag in #2147 +- - Update doc by @Hind-M in #2156 +- - Use Conda canary in nightly tests by @jonashaag in #2180 +- - Expliclity point to libmamba test data independently of cwd by @AntoinePrv in #2158 +- - Add bug report issue template by @jonashaag in #2182 +- - Downgrade curl to fix micromamba on macOS x64 by @wolfv in #2205 +- - Use conda-forge micromamba feedstock instead of a fork by @JohanMabille in #2206 +- - Update pre-commit versions by @jonashaag in #2178 +- - Use local meta.yaml by @wolfv in #2214 +- - Remove feedstock patches by @wolfv in #2216 +- - Fixed static dependency order by @JohanMabille in #2201 + libmamba 1.1.0 (November 25, 2022) ================================== diff --git a/libmamba/include/mamba/version.hpp b/libmamba/include/mamba/version.hpp index 2b492cae6c..73c55cb8a0 100644 --- a/libmamba/include/mamba/version.hpp +++ b/libmamba/include/mamba/version.hpp @@ -11,7 +11,7 @@ #include #define LIBMAMBA_VERSION_MAJOR 1 -#define LIBMAMBA_VERSION_MINOR 1 +#define LIBMAMBA_VERSION_MINOR 2 #define LIBMAMBA_VERSION_PATCH 0 // Binary version diff --git a/libmambapy/CHANGELOG.md b/libmambapy/CHANGELOG.md index 95ce0e8bb3..36aa5c1973 100644 --- a/libmambapy/CHANGELOG.md +++ b/libmambapy/CHANGELOG.md @@ -1,3 +1,26 @@ +libmambapy 1.2.0 (January 16, 2023) +=================================== + +This release contains some speed improvements: download repodata faster as zstd encoded files (configure using +`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix +with spaces works better thanks to a new "shebang" style and the `micromamba package compress` and `transmute` +commands produce better conda packages. + +CI fixes & docs: + +- - Improve build env cleanup by @jonashaag in #2213 +- - Run conda_nightly once per week by @jonashaag in #2147 +- - Update doc by @Hind-M in #2156 +- - Use Conda canary in nightly tests by @jonashaag in #2180 +- - Expliclity point to libmamba test data independently of cwd by @AntoinePrv in #2158 +- - Add bug report issue template by @jonashaag in #2182 +- - Downgrade curl to fix micromamba on macOS x64 by @wolfv in #2205 +- - Use conda-forge micromamba feedstock instead of a fork by @JohanMabille in #2206 +- - Update pre-commit versions by @jonashaag in #2178 +- - Use local meta.yaml by @wolfv in #2214 +- - Remove feedstock patches by @wolfv in #2216 +- - Fixed static dependency order by @JohanMabille in #2201 + libmambapy 1.1.0 (November 25, 2022) ==================================== diff --git a/libmambapy/libmambapy/_version.py b/libmambapy/libmambapy/_version.py index 9260b35475..5506ea1716 100644 --- a/libmambapy/libmambapy/_version.py +++ b/libmambapy/libmambapy/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 1, 0) +version_info = (1, 2, 0) __version__ = ".".join(map(str, version_info)) diff --git a/mamba/CHANGELOG.md b/mamba/CHANGELOG.md index 5705a198e1..717bc79e0a 100644 --- a/mamba/CHANGELOG.md +++ b/mamba/CHANGELOG.md @@ -1,3 +1,32 @@ +mamba 1.2.0 (January 16, 2023) +============================== + +This release contains some speed improvements: download repodata faster as zstd encoded files (configure using +`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix +with spaces works better thanks to a new "shebang" style and the `micromamba package compress` and `transmute` +commands produce better conda packages. + +Bug fixes: + +- Add Context binding for experimental_sat_error_message by @syslaila in #2143 +- Fix `custom_channels` parsing by @XuehaiPan in #2207 +- Use check_allowlist from conda by @duncanmmacleod in #2220 + +CI fixes & docs: + +- - Improve build env cleanup by @jonashaag in #2213 +- - Run conda_nightly once per week by @jonashaag in #2147 +- - Update doc by @Hind-M in #2156 +- - Use Conda canary in nightly tests by @jonashaag in #2180 +- - Expliclity point to libmamba test data independently of cwd by @AntoinePrv in #2158 +- - Add bug report issue template by @jonashaag in #2182 +- - Downgrade curl to fix micromamba on macOS x64 by @wolfv in #2205 +- - Use conda-forge micromamba feedstock instead of a fork by @JohanMabille in #2206 +- - Update pre-commit versions by @jonashaag in #2178 +- - Use local meta.yaml by @wolfv in #2214 +- - Remove feedstock patches by @wolfv in #2216 +- - Fixed static dependency order by @JohanMabille in #2201 + mamba 1.1.0 (November 25, 2022) =============================== diff --git a/mamba/mamba/_version.py b/mamba/mamba/_version.py index 9260b35475..5506ea1716 100644 --- a/mamba/mamba/_version.py +++ b/mamba/mamba/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 1, 0) +version_info = (1, 2, 0) __version__ = ".".join(map(str, version_info)) diff --git a/micromamba/CHANGELOG.md b/micromamba/CHANGELOG.md index ef8421fbf8..fe1e974094 100644 --- a/micromamba/CHANGELOG.md +++ b/micromamba/CHANGELOG.md @@ -1,3 +1,42 @@ +micromamba 1.2.0 (January 16, 2023) +=================================== + +This release contains some speed improvements: download repodata faster as zstd encoded files (configure using +`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix +with spaces works better thanks to a new "shebang" style and the `micromamba package compress` and `transmute` +commands produce better conda packages. + +Enhancements: + +- Make tarballs look more similar to conda-package-handling by @wolfv in #2177, #2217 +- Use new shebang style by @wolfv in #2211 +- Faster conda decompress by @wolfv in #2200 +- Initial repodata.zst support by @wolfv & @jonashaag in #2113 + +Bug fixes: + +- log warnings but ignore cyclic symlinks by @wolfv in #2212 +- Report failure when packages to remove don't exist. (#2131) by @Klaim in #2132 +- Fix micromamba shell completion when running 'shell hook' directly by @TomiBelan in #2137 +- Don't create a prefix which is missing conda-meta by @maresb in #2162 +- Fix `custom_channels` parsing by @XuehaiPan in #2207 +- Fix #1783: Add `micromamba env create` by @jonashaag in #1790 + +CI fixes & docs: + +- - Improve build env cleanup by @jonashaag in #2213 +- - Run conda_nightly once per week by @jonashaag in #2147 +- - Update doc by @Hind-M in #2156 +- - Use Conda canary in nightly tests by @jonashaag in #2180 +- - Expliclity point to libmamba test data independently of cwd by @AntoinePrv in #2158 +- - Add bug report issue template by @jonashaag in #2182 +- - Downgrade curl to fix micromamba on macOS x64 by @wolfv in #2205 +- - Use conda-forge micromamba feedstock instead of a fork by @JohanMabille in #2206 +- - Update pre-commit versions by @jonashaag in #2178 +- - Use local meta.yaml by @wolfv in #2214 +- - Remove feedstock patches by @wolfv in #2216 +- - Fixed static dependency order by @JohanMabille in #2201 + micromamba 1.1.0 (November 25, 2022) ==================================== diff --git a/micromamba/src/version.hpp b/micromamba/src/version.hpp index 379c845f27..9175ec37e1 100644 --- a/micromamba/src/version.hpp +++ b/micromamba/src/version.hpp @@ -11,7 +11,7 @@ #include #define UMAMBA_VERSION_MAJOR 1 -#define UMAMBA_VERSION_MINOR 1 +#define UMAMBA_VERSION_MINOR 2 #define UMAMBA_VERSION_PATCH 0 // Binary version