Skip to content

Commit

Permalink
release libmamba 2.0.6.rc3, micromamba 2.0.6.rc3, libmambapy 2.0.6.rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
jjerphan committed Feb 4, 2025
1 parent 60ae7b3 commit 451eaa7
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# 2025.02.04

Release: 2.0.6.rc3 (libmamba, mamba, micromamba, libmambapy)

Enhancement:

- [all] add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777

Bug fixes:

- [all] Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792

Maintenance:

- [mamba] Warn about future removal of `etc/profile.d/mamba.sh` by @jjerphan in https://github.com/mamba-org/mamba/pull/3788
- [all] Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- [all] Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769

# 2025.01.31

Release: 2.0.6.rc2 (libmamba, mamba, micromamba, libmambapy)
Expand Down
15 changes: 15 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# libmamba 2.0.6.rc3 (February 04, 2025)

Enhancement:

- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777

Bug fixes:

- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792

Maintenance:

- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769

# libmamba 2.0.6.rc2 (January 31, 2025)

Enhancements:
Expand Down
4 changes: 2 additions & 2 deletions libmamba/include/mamba/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#define LIBMAMBA_VERSION_PATCH 6
#define LIBMAMBA_VERSION_IS_PRERELEASE 1
#if LIBMAMBA_VERSION_IS_PRERELEASE == 1
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc2"
#define LIBMAMBA_VERSION_PRERELEASE_NAME "rc3"
#endif

#define LIBMAMBA_VERSION_STRING "2.0.6.rc2"
#define LIBMAMBA_VERSION_STRING "2.0.6.rc3"
#define LIBMAMBA_VERSION \
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)

Expand Down
15 changes: 15 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# libmambapy 2.0.6.rc3 (February 04, 2025)

Enhancement:

- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777

Bug fixes:

- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792

Maintenance:

- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769

# libmambapy 2.0.6.rc2 (January 31, 2025)

Enhancements:
Expand Down
2 changes: 1 addition & 1 deletion libmambapy/src/libmambapy/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version_info = ("2", "0", "6")
version_prerelease = "rc2"
version_prerelease = "rc3"
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":
__version__ = f"{__version__}.{version_prerelease}"
15 changes: 15 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# micromamba 2.0.6.rc3 (February 04, 2025)

Enhancement:

- add canonical flag to list command by @SandrineP in https://github.com/mamba-org/mamba/pull/3777

Bug fixes:

- Use `libmamba`'s installation instead of `mamba`'s as a fallback by @jjerphan in https://github.com/mamba-org/mamba/pull/3792

Maintenance:

- Fix typo in Windows workflows by @jjerphan in https://github.com/mamba-org/mamba/pull/3793
- Rerun pytest tests on `main` in case of failures by @jjerphan in https://github.com/mamba-org/mamba/pull/3769

# micromamba 2.0.6.rc2 (January 31, 2025)

Enhancements:
Expand Down
4 changes: 2 additions & 2 deletions micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#define UMAMBA_VERSION_PATCH 6
#define UMAMBA_VERSION_IS_PRERELEASE 1
#if UMAMBA_VERSION_IS_PRERELEASE == 1
#define UMAMBA_VERSION_PRERELEASE_NAME "rc2"
#define UMAMBA_VERSION_PRERELEASE_NAME "rc3"
#endif

#define UMAMBA_VERSION_STRING "2.0.6.rc2"
#define UMAMBA_VERSION_STRING "2.0.6.rc3"
#define UMAMBA_VERSION \
(UMAMBA_VERSION_MAJOR * 10000 + UMAMBA_VERSION_MINOR * 100 + UMAMBA_VERSION_PATCH)

Expand Down

0 comments on commit 451eaa7

Please sign in to comment.