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
8b9ca7e243
commit
bc96cf7eea
10
CHANGELOG.md
10
CHANGELOG.md
@ -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)
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
2
setup.py
2
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',
|
||||
|
@ -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'])
|
||||
|
Loading…
Reference in New Issue
Block a user