diff --git a/CHANGELOG.md b/CHANGELOG.md index 0834c01..610ce7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog +**0.39.0 (TBA)** + +* Add `--json` option to many commands, this makes them print the JSON data + returned by the server instead of human-readable data. Useful for scripting. +* TUI: Make media viewer configurable in settings, see: + https://toot.bezdomni.net/settings.html#tui-view-images +* TUI: Add rich text rendering (thanks Dan Schwarz) + **0.38.2 (2023-11-16)** * Fix compatibility with Pleroma (#399, thanks Sandra Snan) diff --git a/changelog.yaml b/changelog.yaml index 4bcee63..cc6472b 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,10 @@ +0.39.0: + date: "TBA" + changes: + - "Add `--json` option to many commands, this makes them print the JSON data returned by the server instead of human-readable data. Useful for scripting." + - "TUI: Make media viewer configurable in settings, see: https://toot.bezdomni.net/settings.html#tui-view-images" + - "TUI: Add rich text rendering (thanks Dan Schwarz)" + 0.38.2: date: 2023-11-16 changes: diff --git a/docs/changelog.md b/docs/changelog.md index 0834c01..610ce7a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,14 @@ Changelog +**0.39.0 (TBA)** + +* Add `--json` option to many commands, this makes them print the JSON data + returned by the server instead of human-readable data. Useful for scripting. +* TUI: Make media viewer configurable in settings, see: + https://toot.bezdomni.net/settings.html#tui-view-images +* TUI: Add rich text rendering (thanks Dan Schwarz) + **0.38.2 (2023-11-16)** * Fix compatibility with Pleroma (#399, thanks Sandra Snan) diff --git a/setup.py b/setup.py index fdeb67b..e11ad5c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.38.2', + version='0.39.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index e572120..9889d57 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -4,7 +4,7 @@ import sys from os.path import join, expanduser from collections import namedtuple -__version__ = '0.38.2' +__version__ = '0.39.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])