File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1717import colorama # Required for Windows
1818import shtab
1919
20- __version__ = "2 .0.0"
20+ __version__ = "3 .0.0"
2121__client_specification__ = "1.4"
2222
2323REQUEST_HEADERS = {'User-Agent' : 'tldr-python-client' }
You can’t perform that action at this time.
0 commit comments