diff --git a/CHANGELOG.md b/CHANGELOG.md index 21025b15..11737134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # novelWriter ChangeLog +## Version 0.2.2 [2019-09-29] + +**Bug Fixes** + +* Fixed a bug where loading a config file with the dictionary language set to "none", or presumably an missing dictionary, would trigger a fatal error. PR #47 + +**User Interface** + +* Added a basic search function for the currently open document. This is a simple interface to the find command that exists in the Qt document editor. It will be extended further in the future. PR #49 + ## Version 0.2.1 [2019-09-14] **Bug Fixes** diff --git a/nw/__init__.py b/nw/__init__.py index 921590c5..4883c1a4 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.1" -__date__ = "2019-09-14" +__version__ = "0.2.2" +__date__ = "2019-09-29" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index 6d95c1e0..1d25d578 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.2.1", + version="0.2.2", py_modules=["nw"], )