mirror of
https://github.com/ihabunek/toot.git
synced 2024-11-03 04:17:21 -05:00
Bump version, add changelog
This commit is contained in:
parent
7445c16947
commit
41e6ce6257
@ -1,10 +1,14 @@
|
||||
Changelog
|
||||
---------
|
||||
|
||||
**0.18.0 (TBA)**
|
||||
**0.18.0 (2018-06-12)**
|
||||
|
||||
* Add support for public, tag and list timelines in `toot timeline` (#52)
|
||||
* Add `--sensitive` and `--spoiler-text` options to `toot post` (#63)
|
||||
* Curses app improvements:
|
||||
* Respect sensitive content, require keypress to show
|
||||
* Add help modal (press h)
|
||||
* Misc rendering improvements
|
||||
|
||||
**0.17.1 (2018-01-15)**
|
||||
|
||||
|
@ -2,6 +2,7 @@ Release instructions
|
||||
====================
|
||||
|
||||
* Update the version number in `setup.py`
|
||||
* Update the version number in `toot/__init__.py`
|
||||
* Update the `CHANGELOG.md` with the release notes & date
|
||||
* Tag a release
|
||||
* Push master & tag to GitHub
|
||||
|
2
setup.py
2
setup.py
@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline.
|
||||
|
||||
setup(
|
||||
name='toot',
|
||||
version='0.17.1',
|
||||
version='0.18.0',
|
||||
description='Mastodon CLI client',
|
||||
long_description=long_description.strip(),
|
||||
author='Ivan Habunek',
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
__version__ = '0.17.1'
|
||||
__version__ = '0.18.0'
|
||||
|
||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||
|
Loading…
Reference in New Issue
Block a user