Skip to content

Commit 7b6d527

Browse files
committed
create CHANGELOG.md and increment to version 0.1.1
1 parent 49a09bf commit 7b6d527

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# castero changelog
2+
3+
This changelog generally follows the principles outlined at
4+
<https://keepachangelog.com>, although the format may differ slightly.
5+
6+
Version listings include the following sections, if applicable:
7+
* Added - for new features
8+
* Changed - for changes to existing functionality
9+
* Deprecated - for pre-existing features made obsolete or unsupported
10+
* Removed - for removed features or functionality
11+
* Fixed - for bugs fixed
12+
13+
See also <https://github.com/xgi/castero/releases>.
14+
15+
## 0.1.1 - 2018-04-12
16+
**Added**
17+
* Pressing 'r' will now reload/refresh your feeds list.
18+
* Added support for showing status messages in the footer, and certain commands
19+
will now display status messages after running (or if an error occurs).
20+
21+
**Fixed**
22+
* Fixed an issue where recreating menus often caused them to be smaller than
23+
normal.
24+
* Fixed an issue where a feeds file with duplicate keys would not load.

castero/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
__title__ = "castero"
22
__description__ = "Command line podcast client"
33
__author__ = "Jake Robertson <[email protected]>"
4-
__version__ = "0.1.0"
5-
__date__ = "2018-03-31"
4+
__version__ = "0.1.1"
5+
__date__ = "2018-04-12"
66
__copyright__ = "Copyright (c) 2018 Jake Robertson"
77
__license__ = "MIT License"
88
__url__ = "https://github.com/xgi/castero"

0 commit comments

Comments
 (0)