Skip to content

Commit f525217

Browse files
authored
Bump version to 3.1.0 (#190)
1 parent 7277842 commit f525217

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

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+
315
## 3.0.0 (10/27/2021)
416

517
### Breaking

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__ = "3.0.0"
20+
__version__ = "3.1.0"
2121
__client_specification__ = "1.5"
2222

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

0 commit comments

Comments
 (0)