Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.4.0 (TBA)

### Features

* Add support for option placeholders

## 3.3.0 (06/29/2024)

## Breaking
Expand Down
2 changes: 1 addition & 1 deletion docs/man/tldr.1
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
..
.TH "TLDR" "1" "Jun 29, 2024" "" "tldr"
.SH NAME
tldr \- tldr 3.3.0
tldr \- tldr 3.4.0
.sp
Python command line client for tldr

Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: tldr
base: core24
version: '3.3.0'
version: '3.4.0'
summary: tldr python client
description: Python command-line client for tldr pages.

Expand Down
2 changes: 1 addition & 1 deletion tldr.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import colorama # Required for Windows
import shtab

__version__ = "3.3.0"
__version__ = "3.4.0"
__client_specification__ = "2.2"

REQUEST_HEADERS = {'User-Agent': 'tldr-python-client'}
Expand Down
Loading