Skip to content

Commit

Permalink
Merge pull request #374 from vkbo/release_0.10.2
Browse files Browse the repository at this point in the history
Release 0.10.2
  • Loading branch information
vkbo committed Jul 29, 2020
2 parents 62e8750 + 2b31904 commit f5cc67d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# novelWriter ChangeLog

## Version 0.10.2 [2020-07-29]

**Bugfixes**

* Fixed a crash when using the replace part of search/replace when using regular expressions for the search. The replace code assumed the search field was a string, which isn't the case when using RegEx, rather itb is a QRegularExpression or QRegExp object. This has now been resolved. In addition, the replace feature has been improved to make sure that it only replaces text selected by an actual search, not any user selected text. Issue #371, PRs #372 and #373.
* The Tokenizer class used for converting novelWriter markdown to other formats produced some invalid escape sequence warnings. The warnings did not seem to affect the results, but have nevertheless been fixed. PR #370.

**Features**

* Insert menu entries to insert single and double open and close quote symbols have been added. These are the symbols selected as the quote symbols in Preferences. They also have keyboard shortcuts associated with them. PR #367.

## Version 0.10.1 [2020-07-11]

**Bugfixes**
Expand All @@ -17,7 +28,7 @@
* The search/replace Regular Expression option now uses the newest QRegularExpression tool instead of the older QRegExp tool if the Qt version is 5.13 or above. Otherwise, it still uses the old. The main benefit of the newer tool in this context is better Unicode support. PR #360.
* The Build Novel Project tool can now generate Roman numbers for chapter markers. Both upper and lower case is supported. PRs #362 and #363.

**Other CHanges**
**Other Changes**

* The install scripts now try to create folders before copying icons. PR #364.
* The manifest file now lists the root assets folder, so that it is included in the pypi build. PR #364.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
author = "Veronica Berglyd Olsen"

# The short X.Y version
version = "0.10.1"
version = "0.10.2"
# The full version, including alpha/beta/rc tags
release = "0.10.1"
release = "0.10.2"


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions nw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.10.1"
__hexversion__ = "0x001001f0"
__date__ = "2020-07-11"
__version__ = "0.10.2"
__hexversion__ = "0x001002f0"
__date__ = "2020-07-29"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Pre-Release"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name = "novelWriter",
version = "0.10.1",
version = "0.10.2",
author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels",
Expand Down

0 comments on commit f5cc67d

Please sign in to comment.