Skip to content

Commit 3bac9b2

Browse files
committed
Add changelog, bump version
1 parent 3420f14 commit 3bac9b2

File tree

5 files changed

+24
-2
lines changed

5 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Changelog
33

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

6+
**0.42.0 (2024-03-09)**
7+
8+
* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)
9+
* TUI: Document missing shortcuts (thanks Denis Laxalde)
10+
* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
11+
* TUI: Don't break if edited_at status field does not exist
12+
613
**0.41.1 (2024-01-02)**
714

815
* Fix a crash in settings parsing code

changelog.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.42.0:
2+
date: 2024-03-09
3+
changes:
4+
- "TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)"
5+
- "TUI: Document missing shortcuts (thanks Denis Laxalde)"
6+
- "TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)"
7+
- "TUI: Don't break if edited_at status field does not exist"
8+
19
0.41.1:
210
date: 2024-01-02
311
changes:

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ Changelog
33

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

6+
**0.42.0 (2024-03-09)**
7+
8+
* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)
9+
* TUI: Document missing shortcuts (thanks Denis Laxalde)
10+
* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
11+
* TUI: Don't break if edited_at status field does not exist
12+
613
**0.41.1 (2024-01-02)**
714

815
* Fix a crash in settings parsing code

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

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

toot/__init__.py

Lines changed: 1 addition & 1 deletion
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.41.1'
7+
__version__ = '0.42.0'
88

99

1010
class App(NamedTuple):

0 commit comments

Comments
 (0)