Skip to content

Commit

Permalink
Bump version, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Jan 23, 2020
1 parent 39e2c05 commit a958573
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ Changelog

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

**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)
Expand Down
9 changes: 8 additions & 1 deletion changelog.yaml
Original file line number Diff line number Diff line change
@@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <version>`` to tag a release in git
* Run ``./scripts/tag_version <version>`` to tag a release in git
* Run ``git push --follow-tags`` to upload changes and tag to Github

Publishing to PyPI
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='toot',
version='0.25.0',
version='0.25.2',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',
Expand Down
2 changes: 1 addition & 1 deletion toot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit a958573

Please sign in to comment.