Update changelog, bump version

This commit is contained in:
Ivan Habunek 2023-03-09 11:53:33 +01:00
parent 1098f63170
commit 8b45840d9f
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 35 additions and 2 deletions

View File

@ -3,6 +3,17 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.36.0 (2023-03-09)**
* Move docs from toot.readthedocs.io to toot.bezdomni.net
* Add specifying media thumbnails to `toot post` (#301)
* Add creating polls to `toot post`
* Handle custom instance domains (e.g. when server is located at
`social.vivaldi.net`, but uses the `vivaldi.net` mastodon domain. (#217)
* TUI: Inherit post visibility when replying (thanks @rogarb)
* TUI: Add conversations timeline (thanks @rogarb)
* TUI: Add shortcut to copy toot contents (thanks Dan Schwarz)
**0.35.0 (2023-03-01)**
* Save toot contents when using --editor so it's recoverable if posting fails

View File

@ -1,3 +1,14 @@
0.36.0:
date: 2023-03-09
changes:
- "Move docs from toot.readthedocs.io to toot.bezdomni.net"
- "Add specifying media thumbnails to `toot post` (#301)"
- "Add creating polls to `toot post`"
- "Handle custom instance domains (e.g. when server is located at `social.vivaldi.net`, but uses the `vivaldi.net` mastodon domain. (#217)"
- "TUI: Inherit post visibility when replying (thanks @rogarb)"
- "TUI: Add conversations timeline (thanks @rogarb)"
- "TUI: Add shortcut to copy toot contents (thanks Dan Schwarz)"
0.35.0:
date: 2023-03-01
changes:

View File

@ -3,6 +3,17 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.36.0 (2023-03-09)**
* Move docs from toot.readthedocs.io to toot.bezdomni.net
* Add specifying media thumbnails to `toot post` (#301)
* Add creating polls to `toot post`
* Handle custom instance domains (e.g. when server is located at
`social.vivaldi.net`, but uses the `vivaldi.net` mastodon domain. (#217)
* TUI: Inherit post visibility when replying (thanks @rogarb)
* TUI: Add conversations timeline (thanks @rogarb)
* TUI: Add shortcut to copy toot contents (thanks Dan Schwarz)
**0.35.0 (2023-03-01)**
* Save toot contents when using --editor so it's recoverable if posting fails

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.35.0',
version='0.36.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

@ -1,6 +1,6 @@
from collections import namedtuple
__version__ = '0.35.0'
__version__ = '0.36.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])