Skip to content

Commit 5cf0609

Browse files
authored
Bump version to 3.0.0 (#169)
1 parent 96ef762 commit 5cf0609

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

Diff for: CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 3.0.0 (10/27/2021)
4+
5+
### Breaking
6+
7+
We have moved from [argcomplete](https://github.com/kislyuk/argcomplete) to [shtab](https://github.com/iterative/shtab) for
8+
providing shell completions. This library is more efficient on doing tab completion, avoiding costly time it takes for the python
9+
intrepreter to parse tldr to get options.
10+
11+
See [Readme#autocomplete](https://github.com/tldr-pages/tldr-python-client#autocomplete) for details on setting up shtab. Please
12+
see the [argcomplete README](https://github.com/kislyuk/argcomplete) for details on where to look to remove its provided completions.
13+
14+
### Features
15+
16+
* __breaking__ Move to shtab for tab completion support (thanks [@casperdcl](https://github.com/casperdcl))
17+
* Change default max cache age from 1 day to 7 days, can get prior behavior by setting the `TLDR_CACHE_MAX_AGE` environment variable
18+
* Install manpage in pypi package
19+
* Add option to print raw markdown (thanks [@dadav](https://github.com/dadav))
20+
* Support Python 3.10
21+
322
## 2.0.0 (07/19/2021)
423

524
### Features

Diff for: tldr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import colorama # Required for Windows
1818
import shtab
1919

20-
__version__ = "2.0.0"
20+
__version__ = "3.0.0"
2121
__client_specification__ = "1.4"
2222

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

0 commit comments

Comments
 (0)