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 Nov 16, 2023
1 parent 6cb170b commit d4b6447
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

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

**0.38.2 (2023-11-16)**

* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
* Fix language documentation (thanks Sandra Snan)

**0.38.1 (2023-07-25)**

* Fix relative datetimes option in TUI
Expand Down
6 changes: 6 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.38.2:
date: 2023-11-16
changes:
- "Fix compatibility with Pleroma (#399, thanks Sandra Snan)"
- "Fix language documentation (thanks Sandra Snan)"

0.38.1:
date: 2023-07-25
changes:
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ Changelog

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

**0.38.2 (2023-11-16)**

* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
* Fix language documentation (thanks Sandra Snan)

**0.38.1 (2023-07-25)**

* Fix relative datetimes option in TUI
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.38.1',
version='0.38.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 @@ -4,7 +4,7 @@
from os.path import join, expanduser
from collections import namedtuple

__version__ = '0.38.1'
__version__ = '0.38.2'

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

0 comments on commit d4b6447

Please sign in to comment.