Skip to content

Commit 3f75721

Browse files
committed
release libmamba 2.3.3.alpha1, micromamba 2.3.3.alpha1, libmambapy 2.3.3.alpha1
1 parent 7969671 commit 3f75721

File tree

7 files changed

+83
-5
lines changed

7 files changed

+83
-5
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 2025.10.14
2+
3+
Release: 2.3.3.alpha1 (libmamba, mamba, micromamba, libmambapy)
4+
5+
Bug fixes:
6+
7+
- [libmamba] fix: pass `$argv` for fish wrapper by @sghng in <https://github.com/mamba-org/mamba/pull/4073>
8+
- [libmamba] Fix empty depends/constrains when installing explicit spec files by @benmoss in <https://github.com/mamba-org/mamba/pull/4071>
9+
- [libmamba] fix: proxy both micromamba and mamba with fish function by @sghng in <https://github.com/mamba-org/mamba/pull/4065>
10+
- [libmamba] Fix nodiscard errors by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4058>
11+
- [libmambapy] Fix deprecated license key by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4053>
12+
13+
CI fixes and doc:
14+
15+
- [all] Added lower bounds on spdlog and fmt by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4080>
16+
- [all] Static Windows build fix by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4074>
17+
18+
Maintenance:
19+
20+
- [all] maint: Auto-update `pre-commit` setup by @jjerphan in <https://github.com/mamba-org/mamba/pull/4079>
21+
- [micromamba] Fixed test_repodata_record_patch by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4067>
22+
- [all] build(deps): bump actions/github-script from 7 to 8 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4063>
23+
- [libmambapy] Use fmt::format by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4061>
24+
- [libmambapy] Move to Pybind 3.0 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4059>
25+
- [libmamba, libmambapy] libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
26+
127
## 2025.09.04
228

329
Release: 2.3.3.alpha0 (libmamba, mamba, micromamba, libmambapy)

libmamba/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## libmamba 2.3.3.alpha1 (October 14, 2025)
2+
3+
Bug fixes:
4+
5+
- fix: pass `$argv` for fish wrapper by @sghng in <https://github.com/mamba-org/mamba/pull/4073>
6+
- Fix empty depends/constrains when installing explicit spec files by @benmoss in <https://github.com/mamba-org/mamba/pull/4071>
7+
- fix: proxy both micromamba and mamba with fish function by @sghng in <https://github.com/mamba-org/mamba/pull/4065>
8+
- Fix nodiscard errors by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4058>
9+
10+
CI fixes and doc:
11+
12+
- Added lower bounds on spdlog and fmt by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4080>
13+
- Static Windows build fix by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4074>
14+
15+
Maintenance:
16+
17+
- maint: Auto-update `pre-commit` setup by @jjerphan in <https://github.com/mamba-org/mamba/pull/4079>
18+
- build(deps): bump actions/github-script from 7 to 8 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4063>
19+
- libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
20+
121
## libmamba 2.3.3.alpha0 (September 04, 2025)
222

323
Bug fixes:

libmamba/include/mamba/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#define LIBMAMBA_VERSION_PATCH 3
1616
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
1717
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define LIBMAMBA_VERSION_PRERELEASE_NAME "alpha0"
18+
#define LIBMAMBA_VERSION_PRERELEASE_NAME "alpha1"
1919
#endif
2020

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

libmambapy/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## libmambapy 2.3.3.alpha1 (October 14, 2025)
2+
3+
Bug fixes:
4+
5+
- Fix deprecated license key by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4053>
6+
7+
CI fixes and doc:
8+
9+
- Added lower bounds on spdlog and fmt by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4080>
10+
- Static Windows build fix by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4074>
11+
12+
Maintenance:
13+
14+
- maint: Auto-update `pre-commit` setup by @jjerphan in <https://github.com/mamba-org/mamba/pull/4079>
15+
- build(deps): bump actions/github-script from 7 to 8 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4063>
16+
- Use fmt::format by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4061>
17+
- Move to Pybind 3.0 by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/4059>
18+
- libmambapy: Switch build backend to `scikit-build-core` by @LecrisUT in <https://github.com/mamba-org/mamba/pull/3802>
19+
120
## libmambapy 2.3.3.alpha0 (September 04, 2025)
221

322
Bug fixes:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version_info = ("2", "3", "3")
2-
version_prerelease = "alpha0"
2+
version_prerelease = "alpha1"
33
__version__ = ".".join(map(str, version_info))
44
if version_prerelease != "":
55
__version__ = f"{__version__}.{version_prerelease}"

micromamba/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## micromamba 2.3.3.alpha1 (October 14, 2025)
2+
3+
CI fixes and doc:
4+
5+
- Added lower bounds on spdlog and fmt by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4080>
6+
- Static Windows build fix by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4074>
7+
8+
Maintenance:
9+
10+
- maint: Auto-update `pre-commit` setup by @jjerphan in <https://github.com/mamba-org/mamba/pull/4079>
11+
- Fixed test_repodata_record_patch by @JohanMabille in <https://github.com/mamba-org/mamba/pull/4067>
12+
- build(deps): bump actions/github-script from 7 to 8 by @app/dependabot in <https://github.com/mamba-org/mamba/pull/4063>
13+
114
## micromamba 2.3.3.alpha0 (September 04, 2025)
215

316
## micromamba 2.3.2 (August 26, 2025)

micromamba/src/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#define UMAMBA_VERSION_PATCH 3
1616
#define UMAMBA_VERSION_IS_PRERELEASE 1
1717
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define UMAMBA_VERSION_PRERELEASE_NAME "alpha0"
18+
#define UMAMBA_VERSION_PRERELEASE_NAME "alpha1"
1919
#endif
2020

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

0 commit comments

Comments
 (0)