File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
22
## 2.0.0 (07/19/2021)
4
23
5
24
### Features
Original file line number Diff line number Diff line change 17
17
import colorama # Required for Windows
18
18
import shtab
19
19
20
- __version__ = "2 .0.0"
20
+ __version__ = "3 .0.0"
21
21
__client_specification__ = "1.4"
22
22
23
23
REQUEST_HEADERS = {'User-Agent' : 'tldr-python-client' }
You can’t perform that action at this time.
0 commit comments