Add changelog, bump version

This commit is contained in:
Ivan Habunek 2023-11-22 08:50:17 +01:00
parent 7929919ffc
commit a6bbe97332
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 25 additions and 2 deletions

View File

@ -3,6 +3,14 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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)

View File

@ -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:

View File

@ -3,6 +3,14 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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)

View File

@ -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',

View File

@ -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'])