Skip to content

Commit

Permalink
Release changelog for 0.20.0 (#1392)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfv authored Jan 25, 2022
1 parent 5e57de5 commit 2e5e555
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 6 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
2021.01.25
==========

Releases: libmamba 0.20.0, libmambapy 0.20.0, mamba 0.20.0, micromamba 0.20.0

Bug fixes
- [libmamba] Close file before retry & deletion when downloading subdir (thanks @xhochy) #1373
- [micromamba] Fix micromamba init & conda init clobber (thanks @maresb) #1357
- [micromamba] Rename mamba.sh to micromamba.sh for better compatibility between mamba & micromamba (thanks @maresb) #1355
- [micromamba] Print activate error to stderr (thanks @maresb) #1351

Improvements
- [micromamba, libmamba] Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381
- [libmamba] Add environment variable to disable low speed limit (thanks @xhochy) #1380
- [libmamba] Make max download threads configurable (thanks @adriendelsalle) #1377
- [micromamba] Only print micromamba version and add library versions to `info` command #1372
- [micromamba] Implement activate as a micromamba subcommand for better error messages (thanks @maresb) #1360
- [micromamba] Experimental wass logged twice (thanks @baszalmstra) #1360
- [mamba] Update to Python 3.10 in the example snippet (thanks @jtpio) #1371

2021.12.08
==========

Expand Down
13 changes: 13 additions & 0 deletions libmamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
libmamba 0.20.0 (January 25, 2022)
==================================

Bug fixes

- Close file before retry & deletion when downloading subdir (thanks @xhochy) #1373

Improvements

- Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381
- Add environment variable to disable low speed limit (thanks @xhochy) #1380
- Make max download threads configurable (thanks @adriendelsalle) #1377

libmamba 0.19.1 (December 08, 2021)
===================================

Expand Down
4 changes: 2 additions & 2 deletions libmamba/include/mamba/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <string>

#define LIBMAMBA_VERSION_MAJOR 0
#define LIBMAMBA_VERSION_MINOR 19
#define LIBMAMBA_VERSION_PATCH 1
#define LIBMAMBA_VERSION_MINOR 20
#define LIBMAMBA_VERSION_PATCH 0

// Binary version
#define LIBMAMBA_BINARY_CURRENT 2
Expand Down
4 changes: 4 additions & 0 deletions libmambapy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
libmambapy 0.20.0 (January 25, 2022)
====================================


libmambapy 0.19.1 (December 08, 2021)
=====================================

Expand Down
2 changes: 1 addition & 1 deletion libmambapy/libmambapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 19, 1)
version_info = (0, 20, 0)
__version__ = ".".join(map(str, version_info))
8 changes: 8 additions & 0 deletions mamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
mamba 0.20.0 (January 25, 2022)
===============================


Improvements

- Update to Python 3.10 in the example snippet (thanks @jtpio) #1371

mamba 0.19.1 (December 08, 2021)
================================

Expand Down
2 changes: 1 addition & 1 deletion mamba/mamba/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 19, 1)
version_info = (0, 20, 0)
__version__ = ".".join(map(str, version_info))
17 changes: 17 additions & 0 deletions micromamba/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
micromamba 0.20.0 (January 25, 2022)
====================================

Bug fixes

- Fix micromamba init & conda init clobber (thanks @maresb) #1357
- Rename mamba.sh to micromamba.sh for better compatibility between mamba & micromamba (thanks @maresb) #1355
- Print activate error to stderr (thanks @maresb) #1351

Improvements

- Only print micromamba version and add library versions to `info` command #1372
- Implement activate as a micromamba subcommand for better error messages (thanks @maresb) #1360
- Experimental wass logged twice (thanks @baszalmstra) #1360
- Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381


micromamba 0.19.1 (December 08, 2021)
=====================================

Expand Down
4 changes: 2 additions & 2 deletions micromamba/src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <string>

#define UMAMBA_VERSION_MAJOR 0
#define UMAMBA_VERSION_MINOR 19
#define UMAMBA_VERSION_PATCH 1
#define UMAMBA_VERSION_MINOR 20
#define UMAMBA_VERSION_PATCH 0

// Binary version
#define UMAMBA_BINARY_CURRENT 1
Expand Down

0 comments on commit 2e5e555

Please sign in to comment.