release libmamba 2.1.1, micromamba 2.1.1, libmambapy 2.1.1

This commit is contained in:
Johan Mabille 2025-05-05 15:02:14 +02:00
parent 6161c77257
commit e1f0543810
7 changed files with 102 additions and 5 deletions

View File

@ -1,3 +1,36 @@
## 2025.05.05
Release: 2.1.1 (libmamba, mamba, micromamba, libmambapy)
Enhancements:
- [libmamba] Use Simdjson ondemand parser instead of DOM parser by @Klaim in <https://github.com/mamba-org/mamba/pull/3878>
Bug fixes:
- [libmamba] Fix segfault in error messages by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3912>
- [libmamba] fix: Requalify warning when parsing the "mod/etag" header by @jjerphan in <https://github.com/mamba-org/mamba/pull/3910>
- [micromamba] Make `self-update` a command for micromamba only by @jjerphan in <https://github.com/mamba-org/mamba/pull/3906>
- [libmamba] Fix nushell env for Windows by @cvanelteren in <https://github.com/mamba-org/mamba/pull/3880>
- [libmamba, micromamba] fix: Give precedence to repodata when constructing `repodata_record` files by @jjerphan in <https://github.com/mamba-org/mamba/pull/3901>
- [libmamba, micromamba] feat: add sha256 flag to list command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3885>
- [libmamba, libmambapy] Fix VersionSpec globs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3889>
- [micromamba] hotfix: in integration tests assume xtensor is v0.26 by @Klaim in <https://github.com/mamba-org/mamba/pull/3898>
CI fixes and doc:
- [all] Explicit API and ABI stability commitments by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3913>
- [all] Add minimal citation information for mamba by @jjerphan in <https://github.com/mamba-org/mamba/pull/3914>
Maintenance:
- [libmambapy] DX: libmambapy import in build tree by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3916>
- [libmamba] Internally add flag for switching MatchSpec parser by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3905>
- [micromamba] Some test isolation by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3900>
- [libmamba] Ready Libsolv for C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3899>
- [all] build(deps): bump codecov/codecov-action from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3896>
- [all] ci: Adapt code coverage workflow by @jjerphan in <https://github.com/mamba-org/mamba/pull/3890>
## 2025.04.01
Release: 2.1.0 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,30 @@
## libmamba 2.1.1 (May 05, 2025)
Enhancements:
- Use Simdjson ondemand parser instead of DOM parser by @Klaim in <https://github.com/mamba-org/mamba/pull/3878>
Bug fixes:
- Fix segfault in error messages by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3912>
- fix: Requalify warning when parsing the "mod/etag" header by @jjerphan in <https://github.com/mamba-org/mamba/pull/3910>
- Fix nushell env for Windows by @cvanelteren in <https://github.com/mamba-org/mamba/pull/3880>
- fix: Give precedence to repodata when constructing `repodata_record` files by @jjerphan in <https://github.com/mamba-org/mamba/pull/3901>
- feat: add sha256 flag to list command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3885>
- Fix VersionSpec globs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3889>
CI fixes and doc:
- Explicit API and ABI stability commitments by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3913>
- Add minimal citation information for mamba by @jjerphan in <https://github.com/mamba-org/mamba/pull/3914>
Maintenance:
- Internally add flag for switching MatchSpec parser by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3905>
- Ready Libsolv for C++20 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3899>
- build(deps): bump codecov/codecov-action from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3896>
- ci: Adapt code coverage workflow by @jjerphan in <https://github.com/mamba-org/mamba/pull/3890>
## libmamba 2.1.0 (April 01, 2025)
Bug fixes:

View File

@ -12,13 +12,13 @@
#define LIBMAMBA_VERSION_MAJOR 2
#define LIBMAMBA_VERSION_MINOR 1
#define LIBMAMBA_VERSION_PATCH 0
#define LIBMAMBA_VERSION_PATCH 1
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define LIBMAMBA_VERSION_STRING "2.1.0"
#define LIBMAMBA_VERSION_STRING "2.1.1"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,20 @@
## libmambapy 2.1.1 (May 05, 2025)
Bug fixes:
- Fix VersionSpec globs by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3889>
CI fixes and doc:
- Explicit API and ABI stability commitments by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3913>
- Add minimal citation information for mamba by @jjerphan in <https://github.com/mamba-org/mamba/pull/3914>
Maintenance:
- DX: libmambapy import in build tree by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3916>
- build(deps): bump codecov/codecov-action from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3896>
- ci: Adapt code coverage workflow by @jjerphan in <https://github.com/mamba-org/mamba/pull/3890>
## libmambapy 2.1.0 (April 01, 2025)
Bug fixes:

View File

@ -1,4 +1,4 @@
version_info = ("2", "1", "0")
version_info = ("2", "1", "1")
version_prerelease = ""
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":

View File

@ -1,3 +1,23 @@
## micromamba 2.1.1 (May 05, 2025)
Bug fixes:
- Make `self-update` a command for micromamba only by @jjerphan in <https://github.com/mamba-org/mamba/pull/3906>
- fix: Give precedence to repodata when constructing `repodata_record` files by @jjerphan in <https://github.com/mamba-org/mamba/pull/3901>
- feat: add sha256 flag to list command by @SandrineP in <https://github.com/mamba-org/mamba/pull/3885>
- hotfix: in integration tests assume xtensor is v0.26 by @Klaim in <https://github.com/mamba-org/mamba/pull/3898>
CI fixes and doc:
- Explicit API and ABI stability commitments by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3913>
- Add minimal citation information for mamba by @jjerphan in <https://github.com/mamba-org/mamba/pull/3914>
Maintenance:
- Some test isolation by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3900>
- build(deps): bump codecov/codecov-action from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3896>
- ci: Adapt code coverage workflow by @jjerphan in <https://github.com/mamba-org/mamba/pull/3890>
## micromamba 2.1.0 (April 01, 2025)
Bug fixes:

View File

@ -12,13 +12,13 @@
#define UMAMBA_VERSION_MAJOR 2
#define UMAMBA_VERSION_MINOR 1
#define UMAMBA_VERSION_PATCH 0
#define UMAMBA_VERSION_PATCH 1
#define UMAMBA_VERSION_IS_PRERELEASE 0
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME ""
#endif
#define UMAMBA_VERSION_STRING "2.1.0"
#define UMAMBA_VERSION_STRING "2.1.1"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)