mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.5.12, libmambapy 1.5.12, mamba 1.5.12, micromamba 1.5.12
This commit is contained in:
parent
ce1d936fd6
commit
771663cd9b
|
@ -1,3 +1,12 @@
|
|||
2025.01.02
|
||||
==========
|
||||
|
||||
Releases: libmamba 1.5.12, libmambapy 1.5.12, mamba 1.5.12, micromamba 1.5.12
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- [mamba, micromamba] Use `__conda_activate reactivate` instead of `__conda_reactivate` by @hmaarrfk in https://github.com/mamba-org/mamba/pull/3702
|
||||
|
||||
2024.11.22
|
||||
==========
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmamba 1.5.12 (January 02, 2025)
|
||||
==================================
|
||||
|
||||
|
||||
libmamba 1.5.11 (November 21, 2024)
|
||||
===================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define LIBMAMBA_VERSION_MAJOR 1
|
||||
#define LIBMAMBA_VERSION_MINOR 5
|
||||
#define LIBMAMBA_VERSION_PATCH 11
|
||||
#define LIBMAMBA_VERSION_PATCH 12
|
||||
|
||||
// Binary version
|
||||
#define LIBMAMBA_BINARY_CURRENT 2
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
libmambapy 1.5.12 (January 02, 2025)
|
||||
====================================
|
||||
|
||||
|
||||
libmambapy 1.5.11 (November 21, 2024)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 5, 11)
|
||||
version_info = (1, 5, 12)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
mamba 1.5.12 (January 02, 2025)
|
||||
===============================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Use `__conda_activate reactivate` instead of `__conda_reactivate` by @hmaarrfk in https://github.com/mamba-org/mamba/pull/3702
|
||||
|
||||
mamba 1.5.11 (November 21, 2024)
|
||||
================================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
version_info = (1, 5, 11)
|
||||
version_info = (1, 5, 12)
|
||||
__version__ = ".".join(map(str, version_info))
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
micromamba 1.5.12 (January 02, 2025)
|
||||
====================================
|
||||
|
||||
Bug fixes:
|
||||
|
||||
- Use `__conda_activate reactivate` instead of `__conda_reactivate` by @hmaarrfk in https://github.com/mamba-org/mamba/pull/3702
|
||||
|
||||
micromamba 1.5.11 (November 21, 2024)
|
||||
=====================================
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#define UMAMBA_VERSION_MAJOR 1
|
||||
#define UMAMBA_VERSION_MINOR 5
|
||||
#define UMAMBA_VERSION_PATCH 11
|
||||
#define UMAMBA_VERSION_PATCH 12
|
||||
|
||||
// Binary version
|
||||
#define UMAMBA_BINARY_CURRENT 1
|
||||
|
|
Loading…
Reference in New Issue