Skip to content

Commit 88523d4

Browse files
committed
release libmamba 2.3.3.alpha0, micromamba 2.3.3.alpha0, libmambapy 2.3.3.alpha0
1 parent c25825f commit 88523d4

File tree

7 files changed

+49
-10
lines changed

7 files changed

+49
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 2025.09.04
2+
3+
Release: 2.3.3.alpha0 (libmamba, mamba, micromamba, libmambapy)
4+
5+
Bug fixes:
6+
7+
- [libmamba] Fix nodiscard errors by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4058>
8+
- [libmambapy] Fix deprecated license key by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4053>
9+
10+
Maintenance:
11+
12+
- [libmambapy] Use fmt::format by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4061>
13+
- [libmambapy] Move to Pybind 3.0 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4059>
14+
- [libmamba, libmambapy] libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
15+
116
## 2025.08.26
217

318
Release: 2.3.2 (libmamba, mamba, micromamba, libmambapy)

libmamba/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## libmamba 2.3.3.alpha0 (September 04, 2025)
2+
3+
Bug fixes:
4+
5+
- Fix nodiscard errors by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4058>
6+
7+
Maintenance:
8+
9+
- libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
10+
111
## libmamba 2.3.2 (August 26, 2025)
212

313
Enhancements:

libmamba/include/mamba/version.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
#define LIBMAMBA_VERSION_MAJOR 2
1414
#define LIBMAMBA_VERSION_MINOR 3
15-
#define LIBMAMBA_VERSION_PATCH 2
16-
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
15+
#define LIBMAMBA_VERSION_PATCH 3
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 "alpha0"
1919
#endif
2020

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

libmambapy/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## libmambapy 2.3.3.alpha0 (September 04, 2025)
2+
3+
Bug fixes:
4+
5+
- Fix deprecated license key by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4053>
6+
7+
Maintenance:
8+
9+
- Use fmt::format by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4061>
10+
- Move to Pybind 3.0 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4059>
11+
- libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
12+
113
## libmambapy 2.3.2 (August 26, 2025)
214

315
Enhancements:
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version_info = ("2", "3", "2")
2-
version_prerelease = ""
1+
version_info = ("2", "3", "3")
2+
version_prerelease = "alpha0"
33
__version__ = ".".join(map(str, version_info))
44
if version_prerelease != "":
55
__version__ = f"{__version__}.{version_prerelease}"

micromamba/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## micromamba 2.3.3.alpha0 (September 04, 2025)
2+
13
## micromamba 2.3.2 (August 26, 2025)
24

35
Enhancements:

micromamba/src/version.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
#define UMAMBA_VERSION_MAJOR 2
1414
#define UMAMBA_VERSION_MINOR 3
15-
#define UMAMBA_VERSION_PATCH 2
16-
#define UMAMBA_VERSION_IS_PRERELEASE 0
15+
#define UMAMBA_VERSION_PATCH 3
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 "alpha0"
1919
#endif
2020

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

0 commit comments

Comments
 (0)