Skip to content

Commit

Permalink
Bump version, add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Mar 1, 2023
1 parent 882b6c4 commit 5782405
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Changelog

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

**0.35.0 (2023-03-01)**

* Save toot contents when using --editor so it's recoverable if posting fails
(#311)
* TUI: Add voting on polls (thanks Dan Schwarz)
* TUI: Add following/blocking/muting accounts (thanks Dan Schwarz)
* TUI: Add notifications timeline (thanks Dan Schwarz)

**0.34.1 (2023-02-20)**

* TUI: Fix bug where TUI would break on older Mastodon instances (#309)
Expand Down
8 changes: 8 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.35.0:
date: 2023-03-01
changes:
- "Save toot contents when using --editor so it's recoverable if posting fails (#311)"
- "TUI: Add voting on polls (thanks Dan Schwarz)"
- "TUI: Add following/blocking/muting accounts (thanks Dan Schwarz)"
- "TUI: Add notifications timeline (thanks Dan Schwarz)"

0.34.1:
date: 2023-02-20
changes:
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.34.1',
version='0.35.0',
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
@@ -1,6 +1,6 @@
from collections import namedtuple

__version__ = '0.34.1'
__version__ = '0.35.0'

App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])
Expand Down

0 comments on commit 5782405

Please sign in to comment.