From e58fff57eb1a98dd5e5a9afbec1acbb8f93f0276 Mon Sep 17 00:00:00 2001 From: Jake Robertson Date: Tue, 19 Mar 2019 20:24:37 -0400 Subject: [PATCH] increment to version 0.5.0 fixes #17 fixes #18 fixes #24 --- CHANGELOG.md | 20 ++++++++++++++++++++ castero/__init__.py | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbf3713..53e643b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,26 @@ Version listings include the following sections, if applicable: See also . +## 0.5.0 - 2019-03-19 +**Added** +* The client now uses an sqlite database file for storing data (sqlite added a +a dependency). +* Added support for marking episodes as played. +* Added a metadata-less perspective (SimplePerspective) accessed with `3`. + +**Changed** +* Menus are now able to update dynamically from the database. + +**Deprecated** +* The old JSON `feeds` file is no longer used, in favor of a `castero.db` file +in the same location. The client will migrate your `feeds` file to the new +database upon starting if necessary. There are no known issues with this +process, but your original file is not modified regardless (please create an +Issue if you have any problems!). + +**Fixed** +* Fixed a crash when trying to view the metadata of 0 episodes. + ## 0.4.2 - 2019-03-02 **Added** * Added a separate config option for seeking forwards/backwards - Thanks diff --git a/castero/__init__.py b/castero/__init__.py index 9ce95d7..6f53b51 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.4.2" -__date__ = "2019-03-02" +__version__ = "0.5.0" +__date__ = "2019-03-19" __copyright__ = "Copyright (c) 2018 Jake Robertson" __license__ = "MIT License" __url__ = "https://github.com/xgi/castero"