Skip to content

Commit 2e5e555

Browse files
authored
Release changelog for 0.20.0 (#1392)
1 parent 5e57de5 commit 2e5e555

File tree

9 files changed

+68
-6
lines changed

9 files changed

+68
-6
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
2021.01.25
2+
==========
3+
4+
Releases: libmamba 0.20.0, libmambapy 0.20.0, mamba 0.20.0, micromamba 0.20.0
5+
6+
Bug fixes
7+
- [libmamba] Close file before retry & deletion when downloading subdir (thanks @xhochy) #1373
8+
- [micromamba] Fix micromamba init & conda init clobber (thanks @maresb) #1357
9+
- [micromamba] Rename mamba.sh to micromamba.sh for better compatibility between mamba & micromamba (thanks @maresb) #1355
10+
- [micromamba] Print activate error to stderr (thanks @maresb) #1351
11+
12+
Improvements
13+
- [micromamba, libmamba] Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381
14+
- [libmamba] Add environment variable to disable low speed limit (thanks @xhochy) #1380
15+
- [libmamba] Make max download threads configurable (thanks @adriendelsalle) #1377
16+
- [micromamba] Only print micromamba version and add library versions to `info` command #1372
17+
- [micromamba] Implement activate as a micromamba subcommand for better error messages (thanks @maresb) #1360
18+
- [micromamba] Experimental wass logged twice (thanks @baszalmstra) #1360
19+
- [mamba] Update to Python 3.10 in the example snippet (thanks @jtpio) #1371
20+
121
2021.12.08
222
==========
323

libmamba/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
libmamba 0.20.0 (January 25, 2022)
2+
==================================
3+
4+
Bug fixes
5+
6+
- Close file before retry & deletion when downloading subdir (thanks @xhochy) #1373
7+
8+
Improvements
9+
10+
- Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381
11+
- Add environment variable to disable low speed limit (thanks @xhochy) #1380
12+
- Make max download threads configurable (thanks @adriendelsalle) #1377
13+
114
libmamba 0.19.1 (December 08, 2021)
215
===================================
316

libmamba/include/mamba/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <string>
1212

1313
#define LIBMAMBA_VERSION_MAJOR 0
14-
#define LIBMAMBA_VERSION_MINOR 19
15-
#define LIBMAMBA_VERSION_PATCH 1
14+
#define LIBMAMBA_VERSION_MINOR 20
15+
#define LIBMAMBA_VERSION_PATCH 0
1616

1717
// Binary version
1818
#define LIBMAMBA_BINARY_CURRENT 2

libmambapy/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
libmambapy 0.20.0 (January 25, 2022)
2+
====================================
3+
4+
15
libmambapy 0.19.1 (December 08, 2021)
26
=====================================
37

libmambapy/libmambapy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 19, 1)
1+
version_info = (0, 20, 0)
22
__version__ = ".".join(map(str, version_info))

mamba/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
mamba 0.20.0 (January 25, 2022)
2+
===============================
3+
4+
5+
Improvements
6+
7+
- Update to Python 3.10 in the example snippet (thanks @jtpio) #1371
8+
19
mamba 0.19.1 (December 08, 2021)
210
================================
311

mamba/mamba/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 19, 1)
1+
version_info = (0, 20, 0)
22
__version__ = ".".join(map(str, version_info))

micromamba/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
micromamba 0.20.0 (January 25, 2022)
2+
====================================
3+
4+
Bug fixes
5+
6+
- Fix micromamba init & conda init clobber (thanks @maresb) #1357
7+
- Rename mamba.sh to micromamba.sh for better compatibility between mamba & micromamba (thanks @maresb) #1355
8+
- Print activate error to stderr (thanks @maresb) #1351
9+
10+
Improvements
11+
12+
- Only print micromamba version and add library versions to `info` command #1372
13+
- Implement activate as a micromamba subcommand for better error messages (thanks @maresb) #1360
14+
- Experimental wass logged twice (thanks @baszalmstra) #1360
15+
- Store platform when creating env with `--platform=...` (thanks @adriendelsalle) #1381
16+
17+
118
micromamba 0.19.1 (December 08, 2021)
219
=====================================
320

micromamba/src/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <string>
1212

1313
#define UMAMBA_VERSION_MAJOR 0
14-
#define UMAMBA_VERSION_MINOR 19
15-
#define UMAMBA_VERSION_PATCH 1
14+
#define UMAMBA_VERSION_MINOR 20
15+
#define UMAMBA_VERSION_PATCH 0
1616

1717
// Binary version
1818
#define UMAMBA_BINARY_CURRENT 1

0 commit comments

Comments
 (0)