mirror of
https://github.com/ihabunek/toot.git
synced 2024-11-03 04:17:21 -05:00
Add changelog, bump version
This commit is contained in:
parent
7929919ffc
commit
a6bbe97332
@ -3,6 +3,14 @@ Changelog
|
||||
|
||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||
|
||||
**0.39.0 (TBA)**
|
||||
|
||||
* Add `--json` option to many commands, this makes them print the JSON data
|
||||
returned by the server instead of human-readable data. Useful for scripting.
|
||||
* TUI: Make media viewer configurable in settings, see:
|
||||
https://toot.bezdomni.net/settings.html#tui-view-images
|
||||
* TUI: Add rich text rendering (thanks Dan Schwarz)
|
||||
|
||||
**0.38.2 (2023-11-16)**
|
||||
|
||||
* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
|
||||
|
@ -1,3 +1,10 @@
|
||||
0.39.0:
|
||||
date: "TBA"
|
||||
changes:
|
||||
- "Add `--json` option to many commands, this makes them print the JSON data returned by the server instead of human-readable data. Useful for scripting."
|
||||
- "TUI: Make media viewer configurable in settings, see: https://toot.bezdomni.net/settings.html#tui-view-images"
|
||||
- "TUI: Add rich text rendering (thanks Dan Schwarz)"
|
||||
|
||||
0.38.2:
|
||||
date: 2023-11-16
|
||||
changes:
|
||||
|
@ -3,6 +3,14 @@ Changelog
|
||||
|
||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||
|
||||
**0.39.0 (TBA)**
|
||||
|
||||
* Add `--json` option to many commands, this makes them print the JSON data
|
||||
returned by the server instead of human-readable data. Useful for scripting.
|
||||
* TUI: Make media viewer configurable in settings, see:
|
||||
https://toot.bezdomni.net/settings.html#tui-view-images
|
||||
* TUI: Add rich text rendering (thanks Dan Schwarz)
|
||||
|
||||
**0.38.2 (2023-11-16)**
|
||||
|
||||
* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
|
||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||
|
||||
setup(
|
||||
name='toot',
|
||||
version='0.38.2',
|
||||
version='0.39.0',
|
||||
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 collections import namedtuple
|
||||
|
||||
__version__ = '0.38.2'
|
||||
__version__ = '0.39.0'
|
||||
|
||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||
|
Loading…
Reference in New Issue
Block a user