mirror of
https://github.com/ihabunek/toot
synced 2025-02-10 09:00:39 +01:00
Bump version, update changelog
This commit is contained in:
parent
11aaa1dc29
commit
09b29d2b93
@ -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
|
||||
@ -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
|
||||
|
@ -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 <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"
|
||||
|
@ -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
|
||||
@ -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
|
||||
|
2
setup.py
2
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',
|
||||
|
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user