From 09b29d2b93aaf07962d9b3d7c4715930f4b2f5c2 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Thu, 28 Dec 2023 19:11:28 +0100 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 7 +++++-- changelog.yaml | 7 ++++++- docs/changelog.md | 7 +++++-- setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f334ce..acf986a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Changelog +**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 @@ -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 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 diff --git a/changelog.yaml b/changelog.yaml index 7a9bece..34c219d 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -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: @@ -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 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" diff --git a/docs/changelog.md b/docs/changelog.md index 5f334ce..acf986a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,11 @@ Changelog +**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 @@ -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 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 diff --git a/setup.py b/setup.py index f3889ed..38eb5b8 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.40.1', + version='0.40.2', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index a16608a..53834ff 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -4,7 +4,7 @@ import sys from os.path import join, expanduser from typing import NamedTuple -__version__ = '0.40.1' +__version__ = '0.40.2' class App(NamedTuple):