This will be beta 5 release instead
This commit is contained in:
+2
-2
@@ -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**
|
||||
|
||||
+1
-1
@@ -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 ---------------------------------------------------
|
||||
|
||||
+3
-3
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user