mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.4.6, libmambapy 1.4.6, mamba 1.4.6, micromamba 1.4.6
This commit is contained in:
parent
d8c1ef1437
commit
fa3f7a2f73
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,3 +1,25 @@
|
||||||
|
2023.06.30
|
||||||
|
==========
|
||||||
|
|
||||||
|
Releases: libmamba 1.4.6, libmambapy 1.4.6, mamba 1.4.6, micromamba 1.4.6
|
||||||
|
|
||||||
|
Enhancements:
|
||||||
|
|
||||||
|
- [libmamba] Channels refactoring/cleaning by @Hind-M in https://github.com/mamba-org/mamba/pull/2537
|
||||||
|
- [libmamba] Troubleshooting update by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2635
|
||||||
|
- [libmamba] Direcly call uname for linux detection by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2624
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- [libmamba] Fix build with older Clang by @pavelzw in https://github.com/mamba-org/mamba/pull/2625
|
||||||
|
- [libmambapy, mamba] Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632
|
||||||
|
- [libmamba] Add missing noarch in PackageInfo serialization by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2641
|
||||||
|
- [libmamba] Allow --force-reinstall on uninstalled specs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2636
|
||||||
|
|
||||||
|
CI fixes and doc:
|
||||||
|
|
||||||
|
- [micromamba] Document micromamba support for conda-lock spec files by @mfisher87 in https://github.com/mamba-org/mamba/pull/2621
|
||||||
|
|
||||||
2023.06.27
|
2023.06.27
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,18 @@
|
||||||
|
libmamba 1.4.6 (June 30, 2023)
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Enhancements:
|
||||||
|
|
||||||
|
- Channels refactoring/cleaning by @Hind-M in https://github.com/mamba-org/mamba/pull/2537
|
||||||
|
- Troubleshooting update by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2635
|
||||||
|
- Direcly call uname for linux detection by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2624
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- Fix build with older Clang by @pavelzw in https://github.com/mamba-org/mamba/pull/2625
|
||||||
|
- Add missing noarch in PackageInfo serialization by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2641
|
||||||
|
- Allow --force-reinstall on uninstalled specs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2636
|
||||||
|
|
||||||
libmamba 1.4.5 (June 27, 2023)
|
libmamba 1.4.5 (June 27, 2023)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#define LIBMAMBA_VERSION_MAJOR 1
|
#define LIBMAMBA_VERSION_MAJOR 1
|
||||||
#define LIBMAMBA_VERSION_MINOR 4
|
#define LIBMAMBA_VERSION_MINOR 4
|
||||||
#define LIBMAMBA_VERSION_PATCH 5
|
#define LIBMAMBA_VERSION_PATCH 6
|
||||||
|
|
||||||
// Binary version
|
// Binary version
|
||||||
#define LIBMAMBA_BINARY_CURRENT 2
|
#define LIBMAMBA_BINARY_CURRENT 2
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
libmambapy 1.4.6 (June 30, 2023)
|
||||||
|
================================
|
||||||
|
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632
|
||||||
|
|
||||||
libmambapy 1.4.5 (June 27, 2023)
|
libmambapy 1.4.5 (June 27, 2023)
|
||||||
================================
|
================================
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version_info = (1, 4, 5)
|
version_info = (1, 4, 6)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
mamba 1.4.6 (June 30, 2023)
|
||||||
|
===========================
|
||||||
|
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632
|
||||||
|
|
||||||
mamba 1.4.5 (June 27, 2023)
|
mamba 1.4.5 (June 27, 2023)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version_info = (1, 4, 5)
|
version_info = (1, 4, 6)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
micromamba 1.4.6 (June 30, 2023)
|
||||||
|
================================
|
||||||
|
|
||||||
|
|
||||||
|
CI fixes and doc:
|
||||||
|
|
||||||
|
- Document micromamba support for conda-lock spec files by @mfisher87 in https://github.com/mamba-org/mamba/pull/2621
|
||||||
|
|
||||||
micromamba 1.4.5 (June 27, 2023)
|
micromamba 1.4.5 (June 27, 2023)
|
||||||
================================
|
================================
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#define UMAMBA_VERSION_MAJOR 1
|
#define UMAMBA_VERSION_MAJOR 1
|
||||||
#define UMAMBA_VERSION_MINOR 4
|
#define UMAMBA_VERSION_MINOR 4
|
||||||
#define UMAMBA_VERSION_PATCH 5
|
#define UMAMBA_VERSION_PATCH 6
|
||||||
|
|
||||||
// Binary version
|
// Binary version
|
||||||
#define UMAMBA_BINARY_CURRENT 1
|
#define UMAMBA_BINARY_CURRENT 1
|
||||||
|
|
Loading…
Reference in New Issue