Bump version
This commit is contained in:
parent
82383cd163
commit
08dd02d989
4 changed files with 11 additions and 2 deletions
|
@ -3,6 +3,10 @@ Changelog
|
|||
|
||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||
|
||||
**0.33.1 (2023-01-03)**
|
||||
|
||||
* TUI: Fix crash when viewing toot in browser
|
||||
|
||||
**0.33.0 (2023-01-02)**
|
||||
|
||||
* Add CONTRIBUTING.md containing a contribution guide
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
0.33.1:
|
||||
date: 2023-01-03
|
||||
changes:
|
||||
- "TUI: Fix crash when viewing toot in browser"
|
||||
|
||||
0.33.0:
|
||||
date: 2023-01-02
|
||||
changes:
|
||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
|||
|
||||
setup(
|
||||
name='toot',
|
||||
version='0.33.0',
|
||||
version='0.33.1',
|
||||
description='Mastodon CLI client',
|
||||
long_description=long_description.strip(),
|
||||
author='Ivan Habunek',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
from collections import namedtuple
|
||||
|
||||
__version__ = '0.33.0'
|
||||
__version__ = '0.33.1'
|
||||
|
||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||
|
|
Loading…
Reference in a new issue