release libmamba 1.3.1, libmambapy 1.3.1, mamba 1.3.1, micromamba 1.3.1 (#2280)

This commit is contained in:
Wolf Vollprecht 2023-02-10 11:05:46 +01:00 committed by GitHub
parent 59050cd4a7
commit baf3c48cc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 82 additions and 4 deletions

View File

@ -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
==========

View File

@ -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)
==================================

View File

@ -12,7 +12,7 @@
#define LIBMAMBA_VERSION_MAJOR 1
#define LIBMAMBA_VERSION_MINOR 3
#define LIBMAMBA_VERSION_PATCH 0
#define LIBMAMBA_VERSION_PATCH 1
// Binary version
#define LIBMAMBA_BINARY_CURRENT 2

View File

@ -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)
====================================

View File

@ -1,2 +1,2 @@
version_info = (1, 3, 0)
version_info = (1, 3, 1)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
===============================

View File

@ -1,2 +1,2 @@
version_info = (1, 3, 0)
version_info = (1, 3, 1)
__version__ = ".".join(map(str, version_info))

View File

@ -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)
====================================

View File

@ -12,7 +12,7 @@
#define UMAMBA_VERSION_MAJOR 1
#define UMAMBA_VERSION_MINOR 3
#define UMAMBA_VERSION_PATCH 0
#define UMAMBA_VERSION_PATCH 1
// Binary version
#define UMAMBA_BINARY_CURRENT 1