Skip to content

Commit 3d958ca

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

File tree

7 files changed

+72
-15
lines changed

7 files changed

+72
-15
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.18
2+
3+
Release: 2.4.0.rc0 (libmamba, mamba, micromamba, libmambapy)
4+
5+
Enhancements:
6+
7+
- [libmamba, micromamba] 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.10.17
221

322
Release: 2.3.3 (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.rc0 (November 18, 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.3.3 (October 17, 2025)
214

315
Bug fixes:

libmamba/include/mamba/version.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@
1111
#include <string>
1212

1313
#define LIBMAMBA_VERSION_MAJOR 2
14-
#define LIBMAMBA_VERSION_MINOR 3
15-
#define LIBMAMBA_VERSION_PATCH 3
16-
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
14+
#define LIBMAMBA_VERSION_MINOR 4
15+
#define LIBMAMBA_VERSION_PATCH 0
16+
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
1717
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
18+
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc0"
1919
#endif
2020

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

2525
// Binary version
26-
#define LIBMAMBA_BINARY_CURRENT 5
27-
#define LIBMAMBA_BINARY_REVISION 1
28-
#define LIBMAMBA_BINARY_AGE 1
26+
#define LIBMAMBA_BINARY_CURRENT 6
27+
#define LIBMAMBA_BINARY_REVISION 0
28+
#define LIBMAMBA_BINARY_AGE 2
2929

3030
namespace mamba
3131
{

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.rc0 (November 18, 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.3.3 (October 17, 2025)
212

313
Bug fixes:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version_info = ("2", "3", "3")
2-
version_prerelease = ""
1+
version_info = ("2", "4", "0")
2+
version_prerelease = "rc0"
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.rc0 (November 18, 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.3.3 (October 17, 2025)
218

319
CI fixes and doc:

micromamba/src/version.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
#include <string>
1212

1313
#define UMAMBA_VERSION_MAJOR 2
14-
#define UMAMBA_VERSION_MINOR 3
15-
#define UMAMBA_VERSION_PATCH 3
16-
#define UMAMBA_VERSION_IS_PRERELEASE 0
14+
#define UMAMBA_VERSION_MINOR 4
15+
#define UMAMBA_VERSION_PATCH 0
16+
#define UMAMBA_VERSION_IS_PRERELEASE 1
1717
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define UMAMBA_VERSION_PRERELEASE_NAME ""
18+
#define UMAMBA_VERSION_PRERELEASE_NAME "rc0"
1919
#endif
2020

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

0 commit comments

Comments
 (0)