mirror of
https://github.com/ihabunek/toot
synced 2025-02-03 12:47:32 +01:00
Update changelog, bump version
This commit is contained in:
parent
1098f63170
commit
8b45840d9f
11
CHANGELOG.md
11
CHANGELOG.md
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
2
setup.py
2
setup.py
@ -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',
|
||||
|
@ -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'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user