We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7277842 commit f525217Copy full SHA for f525217
CHANGELOG.md
@@ -1,5 +1,17 @@
1
# Changelog
2
3
+## 3.1.0 (02/16/2022)
4
+
5
+### Features
6
7
+* Add `--search` option to find tldr pages based on keywords (thanks [@gotlougit](https://github.com/gotlougit))
8
+* Specify support for v1.5 of the [tldr client specification](https://github.com/tldr-pages/tldr/blob/main/CLIENT-SPECIFICATION.md)
9
10
+### Bugfixes
11
12
+* Command names are lowercased before searching for page
13
+* Fix color printing for tokens that end with curly braces
14
15
## 3.0.0 (10/27/2021)
16
17
### Breaking
tldr.py
@@ -17,7 +17,7 @@
import colorama # Required for Windows
18
import shtab
19
20
-__version__ = "3.0.0"
+__version__ = "3.1.0"
21
__client_specification__ = "1.5"
22
23
REQUEST_HEADERS = {'User-Agent': 'tldr-python-client'}
0 commit comments