mirror of
https://github.com/ihabunek/toot.git
synced 2024-11-03 04:17:21 -05:00
Add changelog, bump version
This commit is contained in:
parent
b0099642cd
commit
5eeb9fdf49
@ -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.38.0 (2023-07-25)**
|
||||||
|
|
||||||
|
* Add `toot muted` and `toot blocked` commands (thanks Florian Obser)
|
||||||
|
* Add settings file, allows setting common options, defining defaults for
|
||||||
|
command arguments, and the TUI palette
|
||||||
|
* TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks
|
||||||
|
Dan Schwarz)
|
||||||
|
|
||||||
**0.37.0 (2023-06-28)**
|
**0.37.0 (2023-06-28)**
|
||||||
|
|
||||||
* **BREAKING:** Require Python 3.7+
|
* **BREAKING:** Require Python 3.7+
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
0.38.0:
|
||||||
|
date: 2023-07-25
|
||||||
|
changes:
|
||||||
|
- "Add `toot muted` and `toot blocked` commands (thanks Florian Obser)"
|
||||||
|
- "Add settings file, allows setting common options, defining defaults for command arguments, and the TUI palette"
|
||||||
|
- "TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks Dan Schwarz)"
|
||||||
|
|
||||||
0.37.0:
|
0.37.0:
|
||||||
date: 2023-06-28
|
date: 2023-06-28
|
||||||
changes:
|
changes:
|
||||||
|
@ -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.38.0 (2023-07-25)**
|
||||||
|
|
||||||
|
* Add `toot muted` and `toot blocked` commands (thanks Florian Obser)
|
||||||
|
* Add settings file, allows setting common options, defining defaults for
|
||||||
|
command arguments, and the TUI palette
|
||||||
|
* TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks
|
||||||
|
Dan Schwarz)
|
||||||
|
|
||||||
**0.37.0 (2023-06-28)**
|
**0.37.0 (2023-06-28)**
|
||||||
|
|
||||||
* **BREAKING:** Require Python 3.7+
|
* **BREAKING:** Require Python 3.7+
|
||||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.37.0',
|
version='0.38.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',
|
||||||
|
@ -4,7 +4,7 @@ import sys
|
|||||||
from os.path import join, expanduser
|
from os.path import join, expanduser
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = '0.37.0'
|
__version__ = '0.38.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…
Reference in New Issue
Block a user