Skip to content

Commit 081bc04

Browse files
committed
Bump version, add changelog
1 parent 5a26ab4 commit 081bc04

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33

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

6+
**0.41.0 (2024-01-02)**
7+
8+
* Honour user's default visibility set in Mastodon preferences instead of always
9+
defaulting to public visibility (thanks Lexi Winter)
10+
* TUI: Add editing toots (thanks Lexi Winter)
11+
* TUI: Fix a bug which made pallette config in settings not work
12+
* TUI: Show edit datetime in status detail (thanks Lexi Winter)
13+
614
**0.40.2 (2023-12-28)**
715

816
* Reinstate `toot post --using` option.

changelog.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.41.0:
2+
date: 2024-01-02
3+
changes:
4+
- "Honour user's default visibility set in Mastodon preferences instead of always defaulting to public visibility (thanks Lexi Winter)"
5+
- "TUI: Add editing toots (thanks Lexi Winter)"
6+
- "TUI: Fix a bug which made pallette config in settings not work"
7+
- "TUI: Show edit datetime in status detail (thanks Lexi Winter)"
8+
19
0.40.2:
210
date: 2023-12-28
311
changes:

docs/changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33

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

6+
**0.41.0 (2024-01-02)**
7+
8+
* Honour user's default visibility set in Mastodon preferences instead of always
9+
defaulting to public visibility (thanks Lexi Winter)
10+
* TUI: Add editing toots (thanks Lexi Winter)
11+
* TUI: Fix a bug which made pallette config in settings not work
12+
* TUI: Show edit datetime in status detail (thanks Lexi Winter)
13+
614
**0.40.2 (2023-12-28)**
715

816
* Reinstate `toot post --using` option.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='toot',
15-
version='0.40.2',
15+
version='0.41.0',
1616
description='Mastodon CLI client',
1717
long_description=long_description.strip(),
1818
author='Ivan Habunek',

toot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from os.path import join, expanduser
55
from typing import NamedTuple
66

7-
__version__ = '0.40.2'
7+
__version__ = '0.41.0'
88

99

1010
class App(NamedTuple):

0 commit comments

Comments
 (0)