From 4b60c879f1ab02ae1b02af0409196e83afb09883 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 15 Aug 2020 19:55:39 +0200 Subject: [PATCH 1/2] Bumped version to 1.0 beta 1 --- docs/source/conf.py | 8 +++++--- nw/__init__.py | 6 +++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index c2ef1e31..87984125 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,9 @@ # import os # import sys # sys.path.insert(0, os.path.abspath(".")) -import os, time, sphinx_rtd_theme +import os +import time +import sphinx_rtd_theme # noqa: F401 # -- Project information ----------------------------------------------------- @@ -24,9 +26,9 @@ copyright = "2018-2020, Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen" # The short X.Y version -version = "0.12.0" +version = "1.0" # The full version, including alpha/beta/rc tags -release = "0.12.0" +release = "1.0b1" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index d49506c8..7e6ad1ef 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -41,9 +41,9 @@ __package__ = "nw" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.12.0" -__hexversion__ = "0x001200f0" -__date__ = "2020-08-15" +__version__ = "1.0b1" +__hexversion__ = "0x010000b1" +__date__ = "2020-08-23" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Beta" From 0927c117987ae4f51c0810cfc815fce583d7d6ab Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 15 Aug 2020 20:00:04 +0200 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe8b3ad..0febee8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # novelWriter ChangeLog +## Version 1.0 Beta 1 [2020-08-23] - Not Yet Released + +**Improvements** + +* The Select Paragraph feature in the Edit menu now selects only the paragraph itself, without the leading line break. This was previously handled entirely by the Qt library, which does this for some reason. Issue #395, PR #403. + + ## Version 0.12 [2020-08-15] **User Interface**