Skip to content

Bump version to 2.0.0 #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 2.0.0 (07/19/2021)

* __breaking__ Drop support for Python 3.5 (thanks [@nebnola](https://github.com/nebnola))

### Features

* Allow overriding system language using `TLDR_LANGUAGE` environment variable (thanks [@nebnola](https://github.com/nebnola))

### Fixes

* Improve wording of missing page error message (thanks [@CleanMachine1](https://github.com/CleanMachine1))

## 1.2.1 (04/01/2021)

### Fixes
Expand All @@ -20,12 +32,12 @@

### Features

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

### Fixes

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

## 1.0.0 (05/16/2020)
Expand All @@ -37,7 +49,7 @@
* __breaking__ Remove ability to print out multiple pages at the same time
* __breaking__ Make `--update` act the same as `--download_cache`, remove ability to only update currently cached pages
* __breaking__ Remove `--download_cache` flag (redundant to `--update`)
* __breaking__ Remove printing of tldr page to console width, and remove any ability to paint blank lines (see #98 for more info)
* __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)
* Verify if colors specified via environment variables are valid, fallback to default if not
* Set `User-Agent` header for urlopen requests
* Allow specifying endpoints for pages and cache via environment variables
Expand Down
2 changes: 1 addition & 1 deletion tldr.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import colorama # Required for Windows
import argcomplete

__version__ = "1.2.1"
__version__ = "2.0.0"
__client_specification__ = "1.4"

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