File tree 7 files changed +111
-5
lines changed
7 files changed +111
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 2025.01.28
2
+
3
+ Release: 2.0.6.rc1 (libmamba, mamba, micromamba, libmambapy)
4
+
5
+ Enhancements:
6
+
7
+ - [ all] Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
8
+
9
+ Bug fixes:
10
+
11
+ - [ all] Support globs in ` MatchSpec ` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
12
+ - [ all] Don't encode URLs for ` mamba env export --explicit ` by @maresb in https://github.com/mamba-org/mamba/pull/3745
13
+ - [ all] Handle ` git+https ` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
14
+ - [ all] Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
15
+ - [ all] Use CA certificates from ` conda-forge::ca-certificates ` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
16
+ - [ all] Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
17
+ - [ all] Fix dependency and ` subdir ` in repoquery ` whoneeds ` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
18
+ - [ all] Use ` LOG_DEBUG ` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
19
+ - [ all] Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
20
+
21
+ Maintenance:
22
+
23
+ - [ all] ` list ` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
24
+ - [ all] Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
25
+ - [ all] Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
26
+ - [ all] Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
27
+ - [ all] Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
28
+
1
29
# 2025.01.14
2
30
3
31
Release: 2.0.6.rc0 (libmamba, mamba, micromamba, libmambapy)
Original file line number Diff line number Diff line change
1
+ # libmamba 2.0.6.rc1 (January 28, 2025)
2
+
3
+ Enhancements:
4
+
5
+ - Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
6
+
7
+ Bug fixes:
8
+
9
+ - Support globs in ` MatchSpec ` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
10
+ - Don't encode URLs for ` mamba env export --explicit ` by @maresb in https://github.com/mamba-org/mamba/pull/3745
11
+ - Handle ` git+https ` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
12
+ - Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
13
+ - Use CA certificates from ` conda-forge::ca-certificates ` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
14
+ - Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
15
+ - Fix dependency and ` subdir ` in repoquery ` whoneeds ` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
16
+ - Use ` LOG_DEBUG ` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
17
+ - Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
18
+
19
+ Maintenance:
20
+
21
+ - ` list ` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
22
+ - Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
23
+ - Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
24
+ - Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
25
+ - Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
26
+
1
27
# libmamba 2.0.6.rc0 (January 14, 2025)
2
28
3
29
Bug fixes:
Original file line number Diff line number Diff line change 15
15
#define LIBMAMBA_VERSION_PATCH 6
16
16
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
17
17
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18
- #define LIBMAMBA_VERSION_PRERELEASE_NAME " rc0 "
18
+ #define LIBMAMBA_VERSION_PRERELEASE_NAME " rc1 "
19
19
#endif
20
20
21
- #define LIBMAMBA_VERSION_STRING " 2.0.6.rc0 "
21
+ #define LIBMAMBA_VERSION_STRING " 2.0.6.rc1 "
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.0.6.rc1 (January 28, 2025)
2
+
3
+ Enhancements:
4
+
5
+ - Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
6
+
7
+ Bug fixes:
8
+
9
+ - Support globs in ` MatchSpec ` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
10
+ - Don't encode URLs for ` mamba env export --explicit ` by @maresb in https://github.com/mamba-org/mamba/pull/3745
11
+ - Handle ` git+https ` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
12
+ - Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
13
+ - Use CA certificates from ` conda-forge::ca-certificates ` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
14
+ - Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
15
+ - Fix dependency and ` subdir ` in repoquery ` whoneeds ` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
16
+ - Use ` LOG_DEBUG ` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
17
+ - Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
18
+
19
+ Maintenance:
20
+
21
+ - ` list ` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
22
+ - Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
23
+ - Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
24
+ - Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
25
+ - Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
26
+
1
27
# libmambapy 2.0.6.rc0 (January 14, 2025)
2
28
3
29
Bug fixes:
Original file line number Diff line number Diff line change 1
1
version_info = ("2" , "0" , "6" )
2
- version_prerelease = "rc0 "
2
+ version_prerelease = "rc1 "
3
3
__version__ = "." .join (map (str , version_info ))
4
4
if version_prerelease != "" :
5
5
__version__ = f"{ __version__ } .{ version_prerelease } "
Original file line number Diff line number Diff line change
1
+ # micromamba 2.0.6.rc1 (January 28, 2025)
2
+
3
+ Enhancements:
4
+
5
+ - Add reverse flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3705
6
+
7
+ Bug fixes:
8
+
9
+ - Support globs in ` MatchSpec ` build strings by @jjerphan in https://github.com/mamba-org/mamba/pull/3735
10
+ - Don't encode URLs for ` mamba env export --explicit ` by @maresb in https://github.com/mamba-org/mamba/pull/3745
11
+ - Handle ` git+https ` pip urls by @Hind-M in https://github.com/mamba-org/mamba/pull/3764
12
+ - Uncomment no more failing test by @Hind-M in https://github.com/mamba-org/mamba/pull/3767
13
+ - Use CA certificates from ` conda-forge::ca-certificates ` by @jjerphan in https://github.com/mamba-org/mamba/pull/3765
14
+ - Add explicit flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3760
15
+ - Fix dependency and ` subdir ` in repoquery ` whoneeds ` by @Hind-M in https://github.com/mamba-org/mamba/pull/3743
16
+ - Use ` LOG_DEBUG ` for CUDA version detection by @jjerphan in https://github.com/mamba-org/mamba/pull/3757
17
+ - Add missing thread and undefined sanitizers CMake options by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3753
18
+
19
+ Maintenance:
20
+
21
+ - ` list ` refactoring by @SandrineP in https://github.com/mamba-org/mamba/pull/3768
22
+ - Correctly exclude json files in clang-format by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3749
23
+ - Fix build status badge by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3755
24
+ - Don't exclude Changelog files from typos-conda by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3748
25
+ - Update pre-commit hooks by by @mathbunnyru https://github.com/mamba-org/mamba/pull/3746
26
+
1
27
# micromamba 2.0.6.rc0 (January 14, 2025)
2
28
3
29
Bug fixes:
Original file line number Diff line number Diff line change 15
15
#define UMAMBA_VERSION_PATCH 6
16
16
#define UMAMBA_VERSION_IS_PRERELEASE 1
17
17
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18
- #define UMAMBA_VERSION_PRERELEASE_NAME " rc0 "
18
+ #define UMAMBA_VERSION_PRERELEASE_NAME " rc1 "
19
19
#endif
20
20
21
- #define UMAMBA_VERSION_STRING " 2.0.6.rc0 "
21
+ #define UMAMBA_VERSION_STRING " 2.0.6.rc1 "
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