From 2c1b74de63a31d036936e24e113a786e0b645d4c Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sun, 6 Oct 2019 21:17:34 +0200 Subject: [PATCH] Updated changelog and version --- CHANGELOG.md | 7 +++++++ nw/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11737134..f6b88579 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # novelWriter ChangeLog +## Version 0.2.3 [2019-10-06] + +**User Interface** + +* The search feature now also allows for replacing text, so the basic search/replace tools in now complete. PRs #51 and #52 +* All icons have been removed from the menu, and the dark theme has received a new set of basic icons. They are not very fancy, so will perhaps be replaced by a proper icon set later. PR #53 + ## Version 0.2.2 [2019-09-29] **Bug Fixes** diff --git a/nw/__init__.py b/nw/__init__.py index 4883c1a4..32fb4517 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.2" -__date__ = "2019-09-29" +__version__ = "0.2.3" +__date__ = "2019-10-06" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index 1d25d578..d05b5c8e 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.2.2", + version="0.2.3", py_modules=["nw"], )