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
+
1
29
## 2025.06.16
2
30
3
31
Release: 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
+
1
25
## libmamba 2.3.0 (June 16, 2025)
2
26
3
27
Enhancements:
Original file line number Diff line number Diff line change 12
12
13
13
#define LIBMAMBA_VERSION_MAJOR 2
14
14
#define LIBMAMBA_VERSION_MINOR 3
15
- #define LIBMAMBA_VERSION_PATCH 0
15
+ #define LIBMAMBA_VERSION_PATCH 1
16
16
#define LIBMAMBA_VERSION_IS_PRERELEASE 0
17
17
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18
18
#define LIBMAMBA_VERSION_PRERELEASE_NAME " "
19
19
#endif
20
20
21
- #define LIBMAMBA_VERSION_STRING " 2.3.0 "
21
+ #define LIBMAMBA_VERSION_STRING " 2.3.1 "
22
22
#define LIBMAMBA_VERSION \
23
23
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
24
24
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
+
1
17
## libmambapy 2.3.0 (June 16, 2025)
2
18
3
19
Enhancements:
Original file line number Diff line number Diff line change 1
- version_info = ("2" , "3" , "0 " )
1
+ version_info = ("2" , "3" , "1 " )
2
2
version_prerelease = ""
3
3
__version__ = "." .join (map (str , version_info ))
4
4
if 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
+
1
12
## micromamba 2.3.0 (June 16, 2025)
2
13
3
14
Enhancements:
Original file line number Diff line number Diff line change 12
12
13
13
#define UMAMBA_VERSION_MAJOR 2
14
14
#define UMAMBA_VERSION_MINOR 3
15
- #define UMAMBA_VERSION_PATCH 0
15
+ #define UMAMBA_VERSION_PATCH 1
16
16
#define UMAMBA_VERSION_IS_PRERELEASE 0
17
17
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18
18
#define UMAMBA_VERSION_PRERELEASE_NAME " "
19
19
#endif
20
20
21
- #define UMAMBA_VERSION_STRING " 2.3.0 "
21
+ #define UMAMBA_VERSION_STRING " 2.3.1 "
22
22
#define UMAMBA_VERSION \
23
23
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)
24
24
You can’t perform that action at this time.
0 commit comments