mirror of https://github.com/mamba-org/mamba.git
release libmamba 2.0.1, libmambapy 2.0.1, micromamba 2.0.1
This commit is contained in:
parent
f8bfd115df
commit
9fc7b99ea3
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
|||
2024.09.30
|
||||
==========
|
||||
|
||||
Releases: libmamba 2.0.1, libmambapy 2.0.1, micromamba 2.0.1
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [libmamba] Fixed channel output in umamba list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3486
|
||||
- [libmamba, micromamba] --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485
|
||||
- [libmamba, micromamba] fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483
|
||||
- [libmamba] Fix micromamba activate on Windows by @JohanMabille in https://github.com/mamba-org/mamba/pull/3484
|
||||
- [micromamba] Added --copy flag to create and install commands by @JohanMabille in https://github.com/mamba-org/mamba/pull/3474
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- [all] doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471
|
||||
|
||||
2024.09.25
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,17 @@
|
|||
libmamba 2.0.1 (September 30, 2024)
|
||||
===================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Fixed channel output in umamba list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3486
|
||||
- --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485
|
||||
- fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483
|
||||
- Fix micromamba activate on Windows by @JohanMabille in https://github.com/mamba-org/mamba/pull/3484
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471
|
||||
|
||||
libmamba 2.0.0 (September 25, 2024)
|
||||
===================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 2
|
||||
#define LIBMAMBA_VERSION_MINOR 0
|
||||
#define LIBMAMBA_VERSION_PATCH 0
|
||||
#define LIBMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
libmambapy 2.0.1 (September 30, 2024)
|
||||
=====================================
|
||||
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471
|
||||
|
||||
libmambapy 2.0.0 (September 25, 2024)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = ("2", "0", "0")
|
||||
version_info = ("2", "0", "1")
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
micromamba 2.0.1 (September 30, 2024)
|
||||
=====================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- --full-name option for list by @JohanMabille in https://github.com/mamba-org/mamba/pull/3485
|
||||
- fix: Support for PEP 440 "Compatible Releases" (operator `~=` for `MatchSpec`) by @jjerphan in https://github.com/mamba-org/mamba/pull/3483
|
||||
- Added --copy flag to create and install commands by @JohanMabille in https://github.com/mamba-org/mamba/pull/3474
|
||||
|
||||
CI fixes and doc:
|
||||
|
||||
- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471
|
||||
|
||||
micromamba 2.0.0 (September 25, 2024)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 2
|
||||
#define UMAMBA_VERSION_MINOR 0
|
||||
#define UMAMBA_VERSION_PATCH 0
|
||||
#define UMAMBA_VERSION_PATCH 1
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue