Skip to content

Commit 6f11ca2

Browse files
committed
release libmamba 2.4.0, micromamba 2.4.0, libmambapy 2.4.0
Signed-off-by: Julien Jerphanion <[email protected]>
1 parent 3d958ca commit 6f11ca2

File tree

7 files changed

+64
-7
lines changed

7 files changed

+64
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 2025.11.21
2+
3+
Release: 2.4.0 (libmamba, mamba, micromamba, libmambapy)
4+
5+
Enhancements:
6+
7+
- [micromamba, libmamba] Support for `mambajs`'s environment lockfile format by @Klaim in <https://github.com/mamba-org/mamba/pull/4085>
8+
- [all] Logging impl separation by @Klaim in <https://github.com/mamba-org/mamba/pull/4016>
9+
10+
Bug fixes:
11+
12+
- [micromamba] fix: Update URL of lock files by @jjerphan in <https://github.com/mamba-org/mamba/pull/4097>
13+
- [micromamba] Fix Windows tests by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4086>
14+
15+
Maintenance:
16+
17+
- [all] build(deps): bump actions/upload-artifact from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4088>
18+
- [libmamba] Removed deprecated libcurl backend by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4083>
19+
120
## 2025.11.18
221

322
Release: 2.4.0.rc0 (libmamba, mamba, micromamba, libmambapy)

libmamba/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## libmamba 2.4.0 (November 21, 2025)
2+
3+
Enhancements:
4+
5+
- Support for `mambajs`'s environment lockfile format by @Klaim in <https://github.com/mamba-org/mamba/pull/4085>
6+
- Logging impl separation by @Klaim in <https://github.com/mamba-org/mamba/pull/4016>
7+
8+
Maintenance:
9+
10+
- build(deps): bump actions/upload-artifact from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4088>
11+
- Removed deprecated libcurl backend by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4083>
12+
113
## libmamba 2.4.0.rc0 (November 18, 2025)
214

315
Enhancements:

libmamba/include/mamba/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
#define LIBMAMBA_VERSION_MAJOR 2
1414
#define LIBMAMBA_VERSION_MINOR 4
1515
#define LIBMAMBA_VERSION_PATCH 0
16-
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
16+
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
1717
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc0"
18+
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
1919
#endif
2020

21-
#define LIBMAMBA_VERSION_STRING "2.4.0.rc0"
21+
#define LIBMAMBA_VERSION_STRING "2.4.0"
2222
#define LIBMAMBA_VERSION \
2323
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
2424

libmambapy/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## libmambapy 2.4.0 (November 21, 2025)
2+
3+
Enhancements:
4+
5+
- Logging impl separation by @Klaim in <https://github.com/mamba-org/mamba/pull/4016>
6+
7+
Maintenance:
8+
9+
- build(deps): bump actions/upload-artifact from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4088>
10+
111
## libmambapy 2.4.0.rc0 (November 18, 2025)
212

313
Enhancements:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version_info = ("2", "4", "0")
2-
version_prerelease = "rc0"
2+
version_prerelease = ""
33
__version__ = ".".join(map(str, version_info))
44
if version_prerelease != "":
55
__version__ = f"{__version__}.{version_prerelease}"

micromamba/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## micromamba 2.4.0 (November 21, 2025)
2+
3+
Enhancements:
4+
5+
- Support for `mambajs`'s environment lockfile format by @Klaim in <https://github.com/mamba-org/mamba/pull/4085>
6+
- Logging impl separation by @Klaim in <https://github.com/mamba-org/mamba/pull/4016>
7+
8+
Bug fixes:
9+
10+
- fix: Update URL of lock files by @jjerphan in <https://github.com/mamba-org/mamba/pull/4097>
11+
- Fix Windows tests by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4086>
12+
13+
Maintenance:
14+
15+
- build(deps): bump actions/upload-artifact from 4 to 5 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4088>
16+
117
## micromamba 2.4.0.rc0 (November 18, 2025)
218

319
Enhancements:

micromamba/src/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
#define UMAMBA_VERSION_MAJOR 2
1414
#define UMAMBA_VERSION_MINOR 4
1515
#define UMAMBA_VERSION_PATCH 0
16-
#define UMAMBA_VERSION_IS_PRERELEASE 1
16+
#define UMAMBA_VERSION_IS_PRERELEASE 0
1717
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define UMAMBA_VERSION_PRERELEASE_NAME "rc0"
18+
#define UMAMBA_VERSION_PRERELEASE_NAME ""
1919
#endif
2020

21-
#define UMAMBA_VERSION_STRING "2.4.0.rc0"
21+
#define UMAMBA_VERSION_STRING "2.4.0"
2222
#define UMAMBA_VERSION \
2323
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)
2424

0 commit comments

Comments
 (0)