diff --git a/CHANGELOG.md b/CHANGELOG.md index 573905e..9037ad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,22 @@ Version listings include the following sections, if applicable: See also . +## 0.6.0 - 2019-06-10 +**Added** +* Added support for importing/exporting subscriptions to and from OPML files. +Many other clients support this format, so you are now able to easily move your +feeds between clients. To use this feature, run castero with the +`--import` or `--export` flag (or run `castero -h` for more info). +* Added support for preserving the queue when restarting the client. +* Added support for 256 colors - Thanks @arza-zara! +* Added controls for playback speed - **[** and **]** by default. + +**Fixed** +* Fixed a crash when viewing metadata for a feed with no description. +* Fixed custom_download_dir config option not being an absolute path. +* Improved scroll performance of episode menu with many episodes. +* Fixed a crash when vertically shrinking the client. + ## 0.5.5 - 2019-05-18 **Added** * Added the name of the feed to episodes in the queue menu/perspective. diff --git a/castero/__init__.py b/castero/__init__.py index c8338af..b35fe91 100644 --- a/castero/__init__.py +++ b/castero/__init__.py @@ -3,8 +3,8 @@ __keywords__ = "podcast commandline terminal tui curses" __author__ = "Jake Robertson" __author_email__ = "jake@faltro.com" -__version__ = "0.5.5" -__date__ = "2019-05-18" +__version__ = "0.6.0" +__date__ = "2019-06-10" __copyright__ = "Copyright (c) 2018 Jake Robertson" __license__ = "MIT License" __url__ = "https://github.com/xgi/castero"