release libmamba 2.0.7.rc1, micromamba 2.0.7.rc1, libmambapy 2.0.7.rc1

This commit is contained in:
Julien Jerphanion 2025-03-05 15:00:30 +01:00
parent e5004266cb
commit c6ff043d71
No known key found for this signature in database
GPG Key ID: 56B690A97C2E35B8
7 changed files with 51 additions and 5 deletions

View File

@ -1,3 +1,18 @@
## 2025.03.05
Release: 2.0.7.rc1 (libmamba, mamba, micromamba, libmambapy)
Bug fixes:
- [libmamba] fix: Remove invalid cached tarballs by @jjerphan in <https://github.com/mamba-org/mamba/pull/3839>
- [libmamba, micromamba] fix: Create directories from `envs_dirs` if they do not exist by @holzman in <https://github.com/mamba-org/mamba/pull/3796>
CI fixes and doc:
- [all] build(deps): bump uraimo/run-on-arch-action from 2 to 3 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3850>
- [all] ci: Add "release::maintenance" Pull Request label by @jjerphan in <https://github.com/mamba-org/mamba/pull/3843>
- [micromamba] fix: Temporarily skip `test_pip_git_https_lockfile` by @jjerphan in <https://github.com/mamba-org/mamba/pull/3838>
## 2025.02.24
Release: 2.0.7.rc0 (libmamba, mamba, micromamba, libmambapy)

View File

@ -1,3 +1,15 @@
## libmamba 2.0.7.rc1 (March 05, 2025)
Bug fixes:
- fix: Remove invalid cached tarballs by @jjerphan in <https://github.com/mamba-org/mamba/pull/3839>
- fix: Create directories from `envs_dirs` if they do not exist by @holzman in <https://github.com/mamba-org/mamba/pull/3796>
CI fixes and doc:
- build(deps): bump uraimo/run-on-arch-action from 2 to 3 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3850>
- ci: Add "release::maintenance" Pull Request label by @jjerphan in <https://github.com/mamba-org/mamba/pull/3843>
## libmamba 2.0.7.rc0 (February 24, 2025)
Bug fixes:

View File

@ -15,10 +15,10 @@
#define LIBMAMBA_VERSION_PATCH 7
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc0"
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc1"
#endif
#define LIBMAMBA_VERSION_STRING "2.0.7.rc0"
#define LIBMAMBA_VERSION_STRING "2.0.7.rc1"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

View File

@ -1,3 +1,10 @@
## libmambapy 2.0.7.rc1 (March 05, 2025)
CI fixes and doc:
- build(deps): bump uraimo/run-on-arch-action from 2 to 3 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3850>
- ci: Add "release::maintenance" Pull Request label by @jjerphan in <https://github.com/mamba-org/mamba/pull/3843>
## libmambapy 2.0.7.rc0 (February 24, 2025)
Bug fixes:

View File

@ -1,5 +1,5 @@
version_info = ("2", "0", "7")
version_prerelease = "rc0"
version_prerelease = "rc1"
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":
__version__ = f"{__version__}.{version_prerelease}"

View File

@ -1,3 +1,15 @@
## micromamba 2.0.7.rc1 (March 05, 2025)
Bug fixes:
- fix: Create directories from `envs_dirs` if they do not exist by @holzman in <https://github.com/mamba-org/mamba/pull/3796>
CI fixes and doc:
- build(deps): bump uraimo/run-on-arch-action from 2 to 3 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/3850>
- ci: Add "release::maintenance" Pull Request label by @jjerphan in <https://github.com/mamba-org/mamba/pull/3843>
- fix: Temporarily skip `test_pip_git_https_lockfile` by @jjerphan in <https://github.com/mamba-org/mamba/pull/3838>
## micromamba 2.0.7.rc0 (February 24, 2025)
Bug fixes:

View File

@ -15,10 +15,10 @@
#define UMAMBA_VERSION_PATCH 7
#define UMAMBA_VERSION_IS_PRERELEASE 1
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "rc0"
#define UMAMBA_VERSION_PRERELEASE_NAME "rc1"
#endif
#define UMAMBA_VERSION_STRING "2.0.7.rc0"
#define UMAMBA_VERSION_STRING "2.0.7.rc1"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)