From 8b45840d9f00c5aa982301a3dec0be5b254149a2 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Thu, 9 Mar 2023 11:53:33 +0100 Subject: [PATCH] Update changelog, bump version --- CHANGELOG.md | 11 +++++++++++ changelog.yaml | 11 +++++++++++ docs/changelog.md | 11 +++++++++++ setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10700c8..809fb89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ Changelog +**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 diff --git a/changelog.yaml b/changelog.yaml index 164efba..ee898d6 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -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: diff --git a/docs/changelog.md b/docs/changelog.md index 10700c8..809fb89 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,17 @@ Changelog +**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 diff --git a/setup.py b/setup.py index 6a2cc83..07c2b63 100644 --- a/setup.py +++ b/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', diff --git a/toot/__init__.py b/toot/__init__.py index b3f3d1a..24be0af 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -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'])