Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Dec 28, 2023
1 parent 11aaa1d commit 09b29d2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
7 changes: 5 additions & 2 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.40.2 (2023-12-28)**

* Reinstate `toot post --using` option.
* Add shell completion for instances.

**0.40.1 (2023-12-28)**

* Add `toot --as` option to replace `toot post --using`. This now works for all
Expand All @@ -21,8 +26,6 @@ mostly preserved, except for cases noted below. Please report any issues.
* BREAKING: Options `--debug` and `--color` must be specified after `toot` but
before the command
* BREAKING: Option `--quiet` has been removed. Redirect output instead.
* BREAKING: Removed `toot post --using` option. Use `toot --as <account> post`
instead.
* Add passing parameters via environment variables, see:
https://toot.bezdomni.net/environment_variables.html
* Add shell completion, see: https://toot.bezdomni.net/shell_completion.html
Expand Down
7 changes: 6 additions & 1 deletion changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0.40.2:
date: 2023-12-28
changes:
- "Reinstate `toot post --using` option."
- "Add shell completion for instances."

0.40.1:
date: 2023-12-28
changes:
Expand All @@ -16,7 +22,6 @@
- "BREAKING: Remove deprecated `--disable-https` option for `login` and `login_cli`, pass the base URL instead"
- "BREAKING: Options `--debug` and `--color` must be specified after `toot` but before the command"
- "BREAKING: Option `--quiet` has been removed. Redirect output instead."
- "BREAKING: Removed `toot post --using` option. Use `toot --as <account> post` instead."
- "Add passing parameters via environment variables, see: https://toot.bezdomni.net/environment_variables.html"
- "Add shell completion, see: https://toot.bezdomni.net/shell_completion.html"
- "Add `tags info`, `tags featured`, `tags feature`, and `tags unfeature` commands"
Expand Down
7 changes: 5 additions & 2 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.40.2 (2023-12-28)**

* Reinstate `toot post --using` option.
* Add shell completion for instances.

**0.40.1 (2023-12-28)**

* Add `toot --as` option to replace `toot post --using`. This now works for all
Expand All @@ -21,8 +26,6 @@ mostly preserved, except for cases noted below. Please report any issues.
* BREAKING: Options `--debug` and `--color` must be specified after `toot` but
before the command
* BREAKING: Option `--quiet` has been removed. Redirect output instead.
* BREAKING: Removed `toot post --using` option. Use `toot --as <account> post`
instead.
* Add passing parameters via environment variables, see:
https://toot.bezdomni.net/environment_variables.html
* Add shell completion, see: https://toot.bezdomni.net/shell_completion.html
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.40.1',
version='0.40.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 typing import NamedTuple

__version__ = '0.40.1'
__version__ = '0.40.2'


class App(NamedTuple):
Expand Down

0 comments on commit 09b29d2

Please sign in to comment.