Merge pull request #172 from vkbo/release_0.4.5

Release 0.4.5
This commit is contained in:
Veronica K. Berglyd Olsen
2020-02-17 14:51:49 +01:00
committed by GitHub
4 changed files with 9 additions and 5 deletions
+5 -1
View File
@@ -1,6 +1,6 @@
# novelWriter ChangeLog
## Version 0.4.4 [2020-02-17]
## Version 0.4.5 [2020-02-17]
**Features**
@@ -23,6 +23,10 @@
* The cache folder has been removed. It was used to store the 10 most recent versions of the project file. Instead, the previous project file is renamed to .bak, and can be restored if opening from the latest project file fails. Any additional restore capabilities should be ensured by backup solutions, either the internal simple zip backup, or other third party tools. PR #165.
* The dependency on the Python package `appdirs` has been dropped. It was used only for extracting the path to the user's config folder, a feature which is also provided by Qt. PR #169.
## Version 0.4.4 [2020-02-17]
* Botched release. Replaced with 0.4.5
## Version 0.4.3 [2019-11-24]
**User Interface**
+2 -2
View File
@@ -24,9 +24,9 @@ copyright = "2018-2020, Veronica Berglyd Olsen"
author = "Veronica Berglyd Olsen"
# The short X.Y version
version = "0.4.4"
version = "0.4.5"
# The full version, including alpha/beta/rc tags
release = "0.4.4"
release = "0.4.5"
# -- General configuration ---------------------------------------------------
+1 -1
View File
@@ -25,7 +25,7 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.4.4"
__version__ = "0.4.5"
__date__ = "2020-02-17"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
+1 -1
View File
@@ -6,7 +6,7 @@ with open("README.md", "r") as inFile:
setuptools.setup(
name = "novelWriter",
version = "0.4.4",
version = "0.4.5",
author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels",