Skip to content

Commit 4185322

Browse files
committed
release libmamba 2.3.1, micromamba 2.3.1, libmambapy 2.3.1
1 parent ec62904 commit 4185322

File tree

7 files changed

+84
-5
lines changed

7 files changed

+84
-5
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 2025.07.28
2+
3+
Release: 2.3.1 (libmamba, mamba, micromamba, libmambapy)
4+
5+
Enhancements:
6+
7+
- [libmambapy, libmamba] Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
8+
9+
Bug fixes:
10+
11+
- [libmamba, micromamba] Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
12+
13+
CI fixes and doc:
14+
15+
- [all] [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
16+
- [all] ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
17+
18+
Maintenance:
19+
20+
- [libmamba] fix CI issues related to moving dependencies by @Klaim in <https://github.com/mamba-org/mamba/pull/4023>
21+
- [libmamba] maint: use `synchronized_value` where we use a mutex to protect data by @Klaim in <https://github.com/mamba-org/mamba/pull/3992>
22+
- [libmambapy] maint: handle `fmt>=11.2` by @Klaim in <https://github.com/mamba-org/mamba/pull/4001>
23+
- [libmambapy] Handle removed `is_rgb` from `fmt 11.2.0` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3998>
24+
- [libmamba] Replace macros used in tests for compatibility with coverage report by @jjerphan in <https://github.com/mamba-org/mamba/pull/3995>
25+
- [libmamba] maint: fixes warnings by @Klaim in <https://github.com/mamba-org/mamba/pull/3993>
26+
- [libmamba] `synchronized_value` by @Klaim in <https://github.com/mamba-org/mamba/pull/3984>
27+
- [libmamba] maintenance: fixed msvc warnings about unreachable code by @Klaim in <https://github.com/mamba-org/mamba/pull/3991>
28+
129
## 2025.06.16
230

331
Release: 2.3.0 (libmamba, mamba, micromamba, libmambapy)

libmamba/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## libmamba 2.3.1 (July 28, 2025)
2+
3+
Enhancements:
4+
5+
- Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
6+
7+
Bug fixes:
8+
9+
- Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
10+
11+
CI fixes and doc:
12+
13+
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
14+
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
15+
16+
Maintenance:
17+
18+
- fix CI issues related to moving dependencies by @Klaim in <https://github.com/mamba-org/mamba/pull/4023>
19+
- maint: use `synchronized_value` where we use a mutex to protect data by @Klaim in <https://github.com/mamba-org/mamba/pull/3992>
20+
- Replace macros used in tests for compatibility with coverage report by @jjerphan in <https://github.com/mamba-org/mamba/pull/3995>
21+
- maint: fixes warnings by @Klaim in <https://github.com/mamba-org/mamba/pull/3993>
22+
- `synchronized_value` by @Klaim in <https://github.com/mamba-org/mamba/pull/3984>
23+
- maintenance: fixed msvc warnings about unreachable code by @Klaim in <https://github.com/mamba-org/mamba/pull/3991>
24+
125
## libmamba 2.3.0 (June 16, 2025)
226

327
Enhancements:

libmamba/include/mamba/version.hpp

Lines changed: 2 additions & 2 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 0
15+
#define LIBMAMBA_VERSION_PATCH 1
1616
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
1717
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
1818
#define LIBMAMBA_VERSION_PRERELEASE_NAME ""
1919
#endif
2020

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

libmambapy/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## libmambapy 2.3.1 (July 28, 2025)
2+
3+
Enhancements:
4+
5+
- Add missing bindings and other improvements by @AntoinePrv in <https://github.com/mamba-org/mamba/pull/3990>
6+
7+
CI fixes and doc:
8+
9+
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
10+
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
11+
12+
Maintenance:
13+
14+
- maint: handle `fmt>=11.2` by @Klaim in <https://github.com/mamba-org/mamba/pull/4001>
15+
- Handle removed `is_rgb` from `fmt 11.2.0` by @Hind-M in <https://github.com/mamba-org/mamba/pull/3998>
16+
117
## libmambapy 2.3.0 (June 16, 2025)
218

319
Enhancements:

libmambapy/src/libmambapy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = ("2", "3", "0")
1+
version_info = ("2", "3", "1")
22
version_prerelease = ""
33
__version__ = ".".join(map(str, version_info))
44
if version_prerelease != "":

micromamba/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## micromamba 2.3.1 (July 28, 2025)
2+
3+
Bug fixes:
4+
5+
- Consider `SHELL` env var by @Hind-M in <https://github.com/mamba-org/mamba/pull/3997>
6+
7+
CI fixes and doc:
8+
9+
- [skip ci] Fix typo by @davidbrochart in <https://github.com/mamba-org/mamba/pull/4000>
10+
- ci: use VS2022 instead of VS2019 by @Klaim in <https://github.com/mamba-org/mamba/pull/3986>
11+
112
## micromamba 2.3.0 (June 16, 2025)
213

314
Enhancements:

micromamba/src/version.hpp

Lines changed: 2 additions & 2 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 0
15+
#define UMAMBA_VERSION_PATCH 1
1616
#define UMAMBA_VERSION_IS_PRERELEASE 0
1717
#if UMAMBA_VERSION_IS_PRERELEASE == 1
1818
#define UMAMBA_VERSION_PRERELEASE_NAME ""
1919
#endif
2020

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

0 commit comments

Comments
 (0)