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 Jan 2, 2024
1 parent 964efc5 commit b4cbeee
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

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

**0.41.1 (2024-01-02)**

* Fix a crash in settings parsing code

**0.41.0 (2024-01-02)**

* Honour user's default visibility set in Mastodon preferences instead of always
Expand Down
5 changes: 5 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.41.1:
date: 2024-01-02
changes:
- "Fix a crash in settings parsing code"

0.41.0:
date: 2024-01-02
changes:
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

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

**0.41.1 (2024-01-02)**

* Fix a crash in settings parsing code

**0.41.0 (2024-01-02)**

* Honour user's default visibility set in Mastodon preferences instead of always
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.41.0',
version='0.41.1',
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 typing import NamedTuple

__version__ = '0.41.0'
__version__ = '0.41.1'


class App(NamedTuple):
Expand Down

0 comments on commit b4cbeee

Please sign in to comment.