From bc96cf7eea7e7372fff6ec1bd0446dffd4184372 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 15 Apr 2020 14:28:17 +0200 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 10 ++++++++++ changelog.yaml | 8 ++++++++ docs/release.rst | 2 +- setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3af296..59c7e3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ Changelog +**0.26.0 (2020-04-15)** + +* Fix datetime parsing on Python 3.5 (#162) +* TUI: Display status links and open them (#154, thanks @dlax) +* TUI: Fix visibility descriptions (#153, thanks @finnoleary) +* **IMPORTANT:** Starting from this release, new releases will not be uploaded + to the APT package repository at `bezdomni.net`. Please use the official + Debian or Ubuntu repos or choose another [installation + option](https://toot.readthedocs.io/en/latest/install.html). + **0.25.2 (2020-01-23)** * Revert adding changelog and readme to sourceballs (#149) diff --git a/changelog.yaml b/changelog.yaml index f76be3c..7ac8356 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,11 @@ +0.26.0: + date: 2020-04-15 + changes: + - "Fix datetime parsing on Python 3.5 (#162)" + - "TUI: Display status links and open them (#154, thanks @dlax)" + - "TUI: Fix visibility descriptions (#153, thanks @finnoleary)" + - "**IMPORTANT:** Starting from this release, new releases will not be uploaded to the APT package repository at `bezdomni.net`. Please use the official Debian or Ubuntu repos or choose another [installation option](https://toot.readthedocs.io/en/latest/install.html)." + 0.25.2: date: 2020-01-23 changes: diff --git a/docs/release.rst b/docs/release.rst index 4793bcc..4236877 100644 --- a/docs/release.rst +++ b/docs/release.rst @@ -12,7 +12,7 @@ Bump & tag version * Update the version number in ``setup.py`` * Update the version number in ``toot/__init__.py`` * Update ``changelog.yaml`` with the release notes & date -* Run ``./scripts/generate_changelog > CHANGELOG.md`` to generate a human readable changelog +* Run ``make changelog`` to generate a human readable changelog * Commit the changes * Run ``./scripts/tag_version `` to tag a release in git * Run ``git push --follow-tags`` to upload changes and tag to Github diff --git a/setup.py b/setup.py index 8ab25cf..7e2abc9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.25.2', + version='0.26.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 4398334..a3a7eee 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.25.2' +__version__ = '0.26.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])