From 8e6bc78408d47f3b39b4490eeead87acfa724c7e Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sat, 14 Sep 2019 13:24:20 +0200 Subject: [PATCH] Bumped version and updated changelog --- CHANGELOG.md | 19 +++++++++++++++++++ nw/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15ca0cee..21025b15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # novelWriter ChangeLog +## Version 0.2.1 [2019-09-14] + +**Bug Fixes** + +* The _Tomorrow_ theme had the wrong set of colours. PR #39 + +**Documentation** + +* Added the backup feature to the documentation. PR #40 + +**User Interface** + +* The auto-replace list in project settings is now sorted alphabetically. PR #43 +* Added version checking of the Qt5 and PyQt5 dependencies. Non-essential functionality that depends on very recent versions of Qt5 are now switched off if version is too low. Currently only affects the custom tab stop length, which requires version 5.10. this resolves issue #44. PR #45 + +**Code Improvements** + +* Minor changes to the About novelWriter dialog and to how backup filenames are generated. PR #41 + ## Version 0.2.0 [2019-06-27] **Documentation** diff --git a/nw/__init__.py b/nw/__init__.py index acf10118..921590c5 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -22,8 +22,8 @@ __package__ = "novelWriter" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2019, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.2.0" -__date__ = "2019-06-27" +__version__ = "0.2.1" +__date__ = "2019-09-14" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index 03b276f6..6d95c1e0 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.2.0", + version="0.2.1", py_modules=["nw"], )