From a63d3bf842fc8c53d897b33cb74b71d00e250cc9 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 19 Oct 2019 13:50:59 +0200 Subject: [PATCH] Release 0.3 --- CHANGELOG.md | 8 +++++++- nw/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6b88579..cff7f3ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # novelWriter ChangeLog +## Version 0.3 [2019-10-19] + +**User Interface** + +* Added project export feature with a new GUI dialog and a number of export setting. The export feature currently only exports to a plain text file. PR #55 + ## Version 0.2.3 [2019-10-06] **User Interface** @@ -36,7 +42,7 @@ * Minor changes to the About novelWriter dialog and to how backup filenames are generated. PR #41 -## Version 0.2.0 [2019-06-27] +## Version 0.2 [2019-06-27] **Documentation** diff --git a/nw/__init__.py b/nw/__init__.py index 32fb4517..d3ef5056 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.3" -__date__ = "2019-10-06" +__version__ = "0.3" +__date__ = "2019-10-19" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index d05b5c8e..a8bbf8cd 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.2.3", + version="0.3", py_modules=["nw"], )