diff --git a/CHANGELOG.md b/CHANGELOG.md index f62b5c03..09cced35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # novelWriter ChangeLog +## Version 0.1.3 [2019-05-18] + +**User Interface** + +* Cursor position is now saved when a document is saved, and restored when the document is opened. PR #12. + +**Test Suite** + +* Major upgrades to the test suite, now also testing GUI elements. Coverage at 73%. PRs #9 and #11. + ## Version 0.1.2 [2019-05-12] **Bugfixes** diff --git a/nw/__init__.py b/nw/__init__.py index 656c32fe..1d930e55 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -23,8 +23,8 @@ __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2019, Veronica Berglyd Olsen" __credits__ = ["Veronica Berglyd Olsen"] __license__ = "GPLv3" -__version__ = "0.1.2" -__date__ = "2019.05.12" +__version__ = "0.1.3" +__date__ = "2019.05.18" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Pre-Release" diff --git a/setup.py b/setup.py index 24e0f50b..c0b67cd8 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.1.2", + version="0.1.3", py_modules=["nw"], )