File tree Expand file tree Collapse file tree 7 files changed +84
-5
lines changed Expand file tree Collapse file tree 7 files changed +84
-5
lines changed Original file line number Diff line number Diff line change 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
331Release: 2.3.0 (libmamba, mamba, micromamba, libmambapy)
Original file line number Diff line number Diff line change 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
327Enhancements:
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
319Enhancements:
Original file line number Diff line number Diff line change 1- version_info = ("2" , "3" , "0 " )
1+ version_info = ("2" , "3" , "1 " )
22version_prerelease = ""
33__version__ = "." .join (map (str , version_info ))
44if version_prerelease != "" :
Original file line number Diff line number Diff line change 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
314Enhancements:
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments