From 947f5b79debd09f217565e5746f07cef2339e5b1 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 18 Oct 2020 11:58:44 +0200 Subject: [PATCH] This will be beta 5 release instead --- CHANGELOG.md | 4 ++-- docs/source/conf.py | 2 +- nw/__init__.py | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5e9615..801417bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # novelWriter ChangeLog -## Version 1.0 Release Candidate 1 [2020-10-25] +## Version 1.0 Release Beta 5 [2020-10-18] **Important Notes** * The minimal supported Python version is now 3.6. While novelWriter has worked fine in the post with versions as low as 3.4, neither 3.4 nor 3.5 is tested. They have also both reached end of life. There are a couple of good reasons to drop support for older versions. PR #470. 1. Python 3.6 introduces ordered dictionaries as the standard. - 2. The format string attribute was added in 3.6, and is much less clunky in many parts of the code than the full `"".format()` syntax. + 2. The format string decorator (`f""`) was added in 3.6, and is much less clunky in many parts of the code than the full `"".format()` syntax. 3. Especially 3.4 has limited support for `*var` expansion of iterables. These are used several places in the code. **Bugfixes** diff --git a/docs/source/conf.py b/docs/source/conf.py index c0f62bfc..e8607fed 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = "Veronica Berglyd Olsen" # The short X.Y version version = "1.0" # The full version, including alpha/beta/rc tags -release = "1.0-rc1" +release = "1.0-beta5" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 516b471d..d4597c17 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -61,9 +61,9 @@ __package__ = "nw" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "1.0rc1" -__hexversion__ = "0x010000c1" -__date__ = "2020-10-25" +__version__ = "1.0b5" +__hexversion__ = "0x010000b5" +__date__ = "2020-10-18" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Beta"