Bump version, add changelog

This commit is contained in:
Ivan Habunek 2023-12-28 12:20:43 +01:00
parent ca2912fa78
commit 22c9f387a1
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 22 additions and 2 deletions

View File

@ -3,6 +3,11 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.40.1 (2023-12-28)**
* Add `toot --as` option to replace `toot post --using`. This now works for all
commands.
**0.40.0 (2023-12-27)**
This release includes a rather extensive change to use the Click library
@ -16,6 +21,8 @@ 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

View File

@ -1,3 +1,8 @@
0.40.1:
date: 2023-12-28
changes:
- "Add `toot --as` option to replace `toot post --using`. This now works for all commands."
0.40.0:
date: 2023-12-27
description: |
@ -11,6 +16,7 @@
- "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"

View File

@ -3,6 +3,11 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.40.1 (2023-12-28)**
* Add `toot --as` option to replace `toot post --using`. This now works for all
commands.
**0.40.0 (2023-12-27)**
This release includes a rather extensive change to use the Click library
@ -16,6 +21,8 @@ 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

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.40.0',
version='0.40.1',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

@ -4,7 +4,7 @@ import sys
from os.path import join, expanduser
from typing import NamedTuple
__version__ = '0.40.0'
__version__ = '0.40.1'
class App(NamedTuple):