From 0907bf195e0504585986dee5111fad94bc68d49e Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 17 Jan 2021 21:11:51 +0100 Subject: [PATCH] Bump version to 1.0.2 and update changelog --- CHANGELOG.md | 24 ++++++++++++++++++++++++ docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- 3 files changed, 29 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ab3ef6..d1162cdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # novelWriter Change Log +## Version 1.0.2 [2021-01-24] + +### Release Notes + +### Detailed Changelog + +**Bug Fixes** + +* Fixed an issue with note files being moved between a non-novel root folder and a novel root + folder without clearing its index entry in the former note or novel index. This would cause + duplicate entries for such a file. PR #558. +* Fixed a cosmetic issue where the meta data panel below the project tree was not cleared when the + project was closed. PR #559. +* Fixed an issue where the main window title was not cleared when a project was closed, and the new + title not set when a new project was first created. Issue #560, PR #561. + +**Documentation** + +* Fixed some typos and spelling mistakes in the documentation, and reworded parts of the text that + were unclear. The technical page has also been extended with more information of project folder + structure. PR #557. + +---- + ## Version 1.0.1 [2021-01-10] ### Release Notes diff --git a/docs/source/conf.py b/docs/source/conf.py index d6f4580a..86a78181 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen" # The short X.Y version -version = "1.0.1" +version = "1.0.2" # The full version, including alpha/beta/rc tags -release = "1.0.1" +release = "1.0.2" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 51126435..f0d09ff3 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -63,9 +63,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.0.1" -__hexversion__ = "0x010001f0" -__date__ = "2021-01-10" +__version__ = "1.0.2" +__hexversion__ = "0x010002f0" +__date__ = "2021-01-24" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io"