Skip to content

Commit 39b4d0c

Browse files
authored
Bump version to 2.0.0 (#164)
1 parent 59d9dec commit 39b4d0c

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

CHANGELOG.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 2.0.0 (07/19/2021)
4+
5+
* __breaking__ Drop support for Python 3.5 (thanks [@nebnola](https://github.com/nebnola))
6+
7+
### Features
8+
9+
* Allow overriding system language using `TLDR_LANGUAGE` environment variable (thanks [@nebnola](https://github.com/nebnola))
10+
11+
### Fixes
12+
13+
* Improve wording of missing page error message (thanks [@CleanMachine1](https://github.com/CleanMachine1))
14+
315
## 1.2.1 (04/01/2021)
416

517
### Fixes
@@ -20,12 +32,12 @@
2032

2133
### Features
2234

23-
* Add autocomplete and `--list` command (thanks @wcheang)
24-
* Always fall back to English for LANG / LANGUAGE env vars (thanks @columbarius)
35+
* Add autocomplete and `--list` command (thanks [@wcheang](https://github.com/wcheang))
36+
* Always fall back to English for LANG / LANGUAGE env vars (thanks [@columbarius](https://github.com/columbarius))
2537

2638
### Fixes
2739

28-
* Exit with code `1` when command not found (thanks @samuel-w)
40+
* Exit with code `1` when command not found (thanks [@samuel-w](https://github.com/samuel-w))
2941
* Check that cache directory exists on platform before using it
3042

3143
## 1.0.0 (05/16/2020)
@@ -37,7 +49,7 @@
3749
* __breaking__ Remove ability to print out multiple pages at the same time
3850
* __breaking__ Make `--update` act the same as `--download_cache`, remove ability to only update currently cached pages
3951
* __breaking__ Remove `--download_cache` flag (redundant to `--update`)
40-
* __breaking__ Remove printing of tldr page to console width, and remove any ability to paint blank lines (see #98 for more info)
52+
* __breaking__ Remove printing of tldr page to console width, and remove any ability to paint blank lines (see [#98](https://github.com/tldr-pages/tldr-python-client/pull/98) for more info)
4153
* Verify if colors specified via environment variables are valid, fallback to default if not
4254
* Set `User-Agent` header for urlopen requests
4355
* Allow specifying endpoints for pages and cache via environment variables

tldr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import colorama # Required for Windows
1717
import argcomplete
1818

19-
__version__ = "1.2.1"
19+
__version__ = "2.0.0"
2020
__client_specification__ = "1.4"
2121

2222
REQUEST_HEADERS = {'User-Agent': 'tldr-python-client'}

0 commit comments

Comments
 (0)