Skip to content

Commit 73881ac

Browse files
authored
Merge branch 'main' into fix-etc/profile.d
2 parents cb4f6bd + 2ee50e0 commit 73881ac

File tree

9 files changed

+54
-14
lines changed

9 files changed

+54
-14
lines changed

.github/workflows/set_pr_label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020

2121
- name: Assign label based on PR title
22-
uses: actions/github-script@v7
22+
uses: actions/github-script@v8
2323
with:
2424
github-token: ${{ secrets.GITHUB_TOKEN }}
2525
script: |
@@ -54,7 +54,7 @@ jobs:
5454
}
5555
5656
- name: Assign label based on PR description
57-
uses: actions/github-script@v7
57+
uses: actions/github-script@v8
5858
with:
5959
github-token: ${{ secrets.GITHUB_TOKEN }}
6060
script: |

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:

libmambapy/bindings/bind_utils.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
#ifndef LIBMAMBAPY_BIND_UTILS_HPP
88
#define LIBMAMBAPY_BIND_UTILS_HPP
99

10-
#include <format>
1110
#include <memory>
11+
#include <utility>
1212

13+
#include <fmt/format.h>
1314
#include <pybind11/operators.h>
1415
#include <pybind11/pybind11.h>
1516

@@ -48,7 +49,7 @@ namespace mambapy
4849
return val;
4950
}
5051
}
51-
throw pybind11::key_error(std::format("No member named {}", s));
52+
throw pybind11::key_error(fmt::format("No member named {}", s));
5253
}
5354
));
5455

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)