From a958573d8d8f4ecd8a88debbef5ce08dd5ab5f30 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Thu, 23 Jan 2020 13:24:49 +0100 Subject: [PATCH] Bump version, changelog --- CHANGELOG.md | 8 +++++++- changelog.yaml | 9 ++++++++- docs/release.rst | 2 +- setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1431a4..f3af296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,15 @@ Changelog +**0.25.2 (2020-01-23)** + +* Revert adding changelog and readme to sourceballs (#149) +* TUI: Fall back to username when display_name is unset (thanks @dlax) +* Note: 0.25.1 was skipped due to error when releasing + **0.25.0 (2020-01-21)** -* Show character count when composing (#121) +* TUI: Show character count when composing (#121) * Include changelog and license in sourceballs (#133) * Fix searching by hashtag which include the '#' (#134) * Upgrade search to v2 (#135) diff --git a/changelog.yaml b/changelog.yaml index 8fc38dd..f76be3c 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,7 +1,14 @@ +0.25.2: + date: 2020-01-23 + changes: + - "Revert adding changelog and readme to sourceballs (#149)" + - "TUI: Fall back to username when display_name is unset (thanks @dlax)" + - "Note: 0.25.1 was skipped due to error when releasing" + 0.25.0: date: 2020-01-21 changes: - - "Show character count when composing (#121)" + - "TUI: Show character count when composing (#121)" - "Include changelog and license in sourceballs (#133)" - "Fix searching by hashtag which include the '#' (#134)" - "Upgrade search to v2 (#135)" diff --git a/docs/release.rst b/docs/release.rst index 016f85e..4793bcc 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -14,7 +14,7 @@ Bump & tag version * Update ``changelog.yaml`` with the release notes & date * Run ``./scripts/generate_changelog > CHANGELOG.md`` to generate a human readable changelog * Commit the changes -* Run ``./scripts/tag_release `` to tag a release in git +* Run ``./scripts/tag_version `` to tag a release in git * Run ``git push --follow-tags`` to upload changes and tag to Github Publishing to PyPI diff --git a/setup.py b/setup.py index a68ff93..8ab25cf 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.25.0', + version='0.25.2', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 1ade876..4398334 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.25.0' +__version__ = '0.25.2' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])