Skip to content

Commit 71e4545

Browse files
committed
release libmamba 2.0.6.rc1, micromamba 2.0.6.rc1, libmambapy 2.0.6.rc1
1 parent 57a2c55 commit 71e4545

File tree

7 files changed

+111
-5
lines changed

7 files changed

+111
-5
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
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+
129
# 2025.01.14
230

331
Release: 2.0.6.rc0 (libmamba, mamba, micromamba, libmambapy)

libmamba/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
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+
127
# libmamba 2.0.6.rc0 (January 14, 2025)
228

329
Bug fixes:

libmamba/include/mamba/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#define LIBMAMBA_VERSION_PATCH 6
1616
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
1717
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc0"
18+
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc1"
1919
#endif
2020

21-
#define LIBMAMBA_VERSION_STRING "2.0.6.rc0"
21+
#define LIBMAMBA_VERSION_STRING "2.0.6.rc1"
2222
#define LIBMAMBA_VERSION \
2323
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
2424

libmambapy/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
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+
127
# libmambapy 2.0.6.rc0 (January 14, 2025)
228

329
Bug fixes:

libmambapy/src/libmambapy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version_info = ("2", "0", "6")
2-
version_prerelease = "rc0"
2+
version_prerelease = "rc1"
33
__version__ = ".".join(map(str, version_info))
44
if version_prerelease != "":
55
__version__ = f"{__version__}.{version_prerelease}"

micromamba/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
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+
127
# micromamba 2.0.6.rc0 (January 14, 2025)
228

329
Bug fixes:

micromamba/src/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#define UMAMBA_VERSION_PATCH 6
1616
#define UMAMBA_VERSION_IS_PRERELEASE 1
1717
#if UMAMBA_VERSION_IS_PRERELEASE == 1
18-
#define UMAMBA_VERSION_PRERELEASE_NAME "rc0"
18+
#define UMAMBA_VERSION_PRERELEASE_NAME "rc1"
1919
#endif
2020

21-
#define UMAMBA_VERSION_STRING "2.0.6.rc0"
21+
#define UMAMBA_VERSION_STRING "2.0.6.rc1"
2222
#define UMAMBA_VERSION \
2323
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)
2424

0 commit comments

Comments
 (0)