mirror of
https://github.com/ihabunek/toot
synced 2025-02-15 11:30:52 +01:00
Bump version, add changelog
This commit is contained in:
parent
be0c5653af
commit
e396768d15
@ -3,6 +3,14 @@ Changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
**0.30.0 (2022-11-29)**
|
||||||
|
|
||||||
|
* Display polls in `timeline` (thanks Daniel Schwarz)
|
||||||
|
* TUI: Add [,] shortcut to reload timeline (thanks Daniel Schwarz)
|
||||||
|
* TUI: Add [Z] shortcut to zoom status - allows scrolling (thanks
|
||||||
|
@PeterFidelman)
|
||||||
|
* Internals: add integration tests against a local mastodon instance
|
||||||
|
|
||||||
**0.29.0 (2022-11-21)**
|
**0.29.0 (2022-11-21)**
|
||||||
|
|
||||||
* Add `bookmark` and `unbookmark` commands
|
* Add `bookmark` and `unbookmark` commands
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
0.30.0:
|
||||||
|
date: 2022-11-29
|
||||||
|
changes:
|
||||||
|
- "Display polls in `timeline` (thanks Daniel Schwarz)"
|
||||||
|
- "TUI: Add [,] shortcut to reload timeline (thanks Daniel Schwarz)"
|
||||||
|
- "TUI: Add [Z] shortcut to zoom status - allows scrolling (thanks @PeterFidelman)"
|
||||||
|
- "Internals: add integration tests against a local mastodon instance"
|
||||||
|
|
||||||
0.29.0:
|
0.29.0:
|
||||||
date: 2022-11-21
|
date: 2022-11-21
|
||||||
changes:
|
changes:
|
||||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.29.0',
|
version='0.30.0',
|
||||||
description='Mastodon CLI client',
|
description='Mastodon CLI client',
|
||||||
long_description=long_description.strip(),
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = '0.29.0'
|
__version__ = '0.30.0'
|
||||||
|
|
||||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user