diff --git a/CHANGELOG.md b/CHANGELOG.md index 601bd6b6..4ae258ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** diff --git a/docs/source/conf.py b/docs/source/conf.py index 35673d92..51540235 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 87f77974..d562d446 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -25,7 +25,7 @@ __package__ = "novelWriter" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2020, 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" diff --git a/setup.py b/setup.py index 7d2436dd..91393346 100755 --- a/setup.py +++ b/setup.py @@ -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",