Bump version, add changelog

This commit is contained in:
Ivan Habunek 2020-04-15 14:28:17 +02:00
parent 8b9ca7e243
commit bc96cf7eea
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
5 changed files with 21 additions and 3 deletions

View File

@ -3,6 +3,16 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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)

View File

@ -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:

View File

@ -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 <version>`` to tag a release in git
* Run ``git push --follow-tags`` to upload changes and tag to Github

View File

@ -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',

View File

@ -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'])