mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.4.4, libmambapy 1.4.4, mamba 1.4.4, micromamba 1.4.4
This commit is contained in:
parent
803f89eb5c
commit
7a92fa5f62
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
2023.05.16
|
||||
==========
|
||||
|
||||
Releases: libmamba 1.4.4, libmambapy 1.4.4, mamba 1.4.4, micromamba 1.4.4
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [micromamba] fix: let the new executable run the shell init script by @ruben-arts in https://github.com/mamba-org/mamba/pull/2529
|
||||
- [libmambapy] Support future deprecated API for Context by @Hind-M in https://github.com/mamba-org/mamba/pull/2494
|
||||
- [libmamba] Fix CURLHandle::get_info on 32bit platform by e8035669 in https://github.com/mamba-org/mamba/pull/2528
|
||||
|
||||
2023.05.15
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmamba 1.4.4 (May 16, 2023)
|
||||
=============================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Fix CURLHandle::get_info on 32bit platform by e8035669 in https://github.com/mamba-org/mamba/pull/2528
|
||||
|
||||
libmamba 1.4.3 (May 15, 2023)
|
||||
=============================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 1
|
||||
#define LIBMAMBA_VERSION_MINOR 4
|
||||
#define LIBMAMBA_VERSION_PATCH 3
|
||||
#define LIBMAMBA_VERSION_PATCH 4
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
@ -26,7 +26,8 @@
|
|||
(LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH)
|
||||
#define LIBMAMBA_VERSION_STRING \
|
||||
__LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MAJOR) \
|
||||
"." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MINOR) "." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_PATCH)
|
||||
"." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MINOR) "." __LIBMAMBA_STRINGIZE( \
|
||||
LIBMAMBA_VERSION_PATCH)
|
||||
|
||||
namespace mamba
|
||||
{
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
libmambapy 1.4.4 (May 16, 2023)
|
||||
===============================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Support future deprecated API for Context by @Hind-M in https://github.com/mamba-org/mamba/pull/2494
|
||||
|
||||
libmambapy 1.4.3 (May 15, 2023)
|
||||
===============================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 3)
|
||||
version_info = (1, 4, 4)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
mamba 1.4.4 (May 16, 2023)
|
||||
==========================
|
||||
|
||||
|
||||
mamba 1.4.3 (May 15, 2023)
|
||||
==========================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 4, 3)
|
||||
version_info = (1, 4, 4)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
micromamba 1.4.4 (May 16, 2023)
|
||||
===============================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- fix: let the new executable run the shell init script by @ruben-arts in https://github.com/mamba-org/mamba/pull/2529
|
||||
|
||||
micromamba 1.4.3 (May 15, 2023)
|
||||
===============================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 1
|
||||
#define UMAMBA_VERSION_MINOR 4
|
||||
#define UMAMBA_VERSION_PATCH 3
|
||||
#define UMAMBA_VERSION_PATCH 4
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue