mirror of https://github.com/mamba-org/mamba.git
release libmamba 1.3.1, libmambapy 1.3.1, mamba 1.3.1, micromamba 1.3.1 (#2280)
This commit is contained in:
parent
59050cd4a7
commit
baf3c48cc3
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,3 +1,23 @@
|
||||||
|
2023.02.09
|
||||||
|
==========
|
||||||
|
|
||||||
|
Releases: libmamba 1.3.1, libmambapy 1.3.1, mamba 1.3.1, micromamba 1.3.1
|
||||||
|
|
||||||
|
A bugfix release for 1.3.0!
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
- [micromamba, libmamba] fix up single download target perform finalization to make lockfile download work by @wolfv in https://github.com/mamba-org/mamba/pull/2274
|
||||||
|
- [micromamba] use CONDA_PKGS_DIRS even in explicit installation trasactions by @hmaarrfk in https://github.com/mamba-org/mamba/pull/2265
|
||||||
|
- [libmamba, micromamba] fix rename or remove by @wolfv in https://github.com/mamba-org/mamba/pull/2276
|
||||||
|
- [libmamba] add channel specific job with new str by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2277
|
||||||
|
- [libmamba, micromamba] fix `micromamba shell` for base environment, and improve behavior when `auto_activate_base` is true by @jonashaag, @Hind-M and @wolfv https://github.com/mamba-org/mamba/pull/2272
|
||||||
|
|
||||||
|
Docs:
|
||||||
|
- add micromamba docker image by @wholtz in https://github.com/mamba-org/mamba/pull/2266
|
||||||
|
- added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
|
||||||
|
- change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
|
||||||
|
|
||||||
|
|
||||||
2023.02.03
|
2023.02.03
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
libmamba 1.3.1 (February 09, 2023)
|
||||||
|
==================================
|
||||||
|
|
||||||
|
A bugfix release for 1.3.0!
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- fix up single download target perform finalization to make lockfile download work by @wolfv in https://github.com/mamba-org/mamba/pull/2274
|
||||||
|
- fix rename or remove by @wolfv in https://github.com/mamba-org/mamba/pull/2276
|
||||||
|
- add channel specific job with new str by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2277
|
||||||
|
- fix `micromamba shell` for base environment, and improve behavior when `auto_activate_base` is true by @jonashaag, @Hind-M and @wolfv https://github.com/mamba-org/mamba/pull/2272
|
||||||
|
|
||||||
|
Docs:
|
||||||
|
|
||||||
|
- - add micromamba docker image by @wholtz in https://github.com/mamba-org/mamba/pull/2266
|
||||||
|
- - added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
|
||||||
|
- - change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
|
||||||
|
|
||||||
libmamba 1.3.0 (February 03, 2023)
|
libmamba 1.3.0 (February 03, 2023)
|
||||||
==================================
|
==================================
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#define LIBMAMBA_VERSION_MAJOR 1
|
#define LIBMAMBA_VERSION_MAJOR 1
|
||||||
#define LIBMAMBA_VERSION_MINOR 3
|
#define LIBMAMBA_VERSION_MINOR 3
|
||||||
#define LIBMAMBA_VERSION_PATCH 0
|
#define LIBMAMBA_VERSION_PATCH 1
|
||||||
|
|
||||||
// Binary version
|
// Binary version
|
||||||
#define LIBMAMBA_BINARY_CURRENT 2
|
#define LIBMAMBA_BINARY_CURRENT 2
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
libmambapy 1.3.1 (February 09, 2023)
|
||||||
|
====================================
|
||||||
|
|
||||||
|
A bugfix release for 1.3.0!
|
||||||
|
|
||||||
|
Docs:
|
||||||
|
|
||||||
|
- - add micromamba docker image by @wholtz in https://github.com/mamba-org/mamba/pull/2266
|
||||||
|
- - added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
|
||||||
|
- - change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
|
||||||
|
|
||||||
libmambapy 1.3.0 (February 03, 2023)
|
libmambapy 1.3.0 (February 03, 2023)
|
||||||
====================================
|
====================================
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version_info = (1, 3, 0)
|
version_info = (1, 3, 1)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|
|
@ -1,3 +1,14 @@
|
||||||
|
mamba 1.3.1 (February 09, 2023)
|
||||||
|
===============================
|
||||||
|
|
||||||
|
A bugfix release for 1.3.0!
|
||||||
|
|
||||||
|
Docs:
|
||||||
|
|
||||||
|
- - add micromamba docker image by @wholtz in https://github.com/mamba-org/mamba/pull/2266
|
||||||
|
- - added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
|
||||||
|
- - change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
|
||||||
|
|
||||||
mamba 1.3.0 (February 03, 2023)
|
mamba 1.3.0 (February 03, 2023)
|
||||||
===============================
|
===============================
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
version_info = (1, 3, 0)
|
version_info = (1, 3, 1)
|
||||||
__version__ = ".".join(map(str, version_info))
|
__version__ = ".".join(map(str, version_info))
|
||||||
|
|
|
@ -1,3 +1,21 @@
|
||||||
|
micromamba 1.3.1 (February 09, 2023)
|
||||||
|
====================================
|
||||||
|
|
||||||
|
A bugfix release for 1.3.0!
|
||||||
|
|
||||||
|
Bug fixes:
|
||||||
|
|
||||||
|
- fix up single download target perform finalization to make lockfile download work by @wolfv in https://github.com/mamba-org/mamba/pull/2274
|
||||||
|
- use CONDA_PKGS_DIRS even in explicit installation trasactions by @hmaarrfk in https://github.com/mamba-org/mamba/pull/2265
|
||||||
|
- fix rename or remove by @wolfv in https://github.com/mamba-org/mamba/pull/2276
|
||||||
|
- fix `micromamba shell` for base environment, and improve behavior when `auto_activate_base` is true by @jonashaag, @Hind-M and @wolfv https://github.com/mamba-org/mamba/pull/2272
|
||||||
|
|
||||||
|
Docs:
|
||||||
|
|
||||||
|
- - add micromamba docker image by @wholtz in https://github.com/mamba-org/mamba/pull/2266
|
||||||
|
- - added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
|
||||||
|
- - change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
|
||||||
|
|
||||||
micromamba 1.3.0 (February 03, 2023)
|
micromamba 1.3.0 (February 03, 2023)
|
||||||
====================================
|
====================================
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#define UMAMBA_VERSION_MAJOR 1
|
#define UMAMBA_VERSION_MAJOR 1
|
||||||
#define UMAMBA_VERSION_MINOR 3
|
#define UMAMBA_VERSION_MINOR 3
|
||||||
#define UMAMBA_VERSION_PATCH 0
|
#define UMAMBA_VERSION_PATCH 1
|
||||||
|
|
||||||
// Binary version
|
// Binary version
|
||||||
#define UMAMBA_BINARY_CURRENT 1
|
#define UMAMBA_BINARY_CURRENT 1
|
||||||
|
|
Loading…
Reference in New Issue