diff --git a/docs/source/conf.py b/docs/source/conf.py index 02f7ed85..d54df48e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = "Veronica Berglyd Olsen" # The short X.Y version version = "0.7.0" # The full version, including alpha/beta/rc tags -release = "0.7.0rc1" +release = "0.7.0" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 9956c0d0..61aa56bb 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -40,9 +40,9 @@ __package__ = "novelWriter" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.7.0rc1" -__hexversion__ = "0x000700c1" -__date__ = "2020-05-28" +__version__ = "0.7.0" +__hexversion__ = "0x000700f0" +__date__ = "2020-06-01" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Pre-Release" diff --git a/setup.py b/setup.py index f0cbdbef..46e916af 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r") as inFile: setuptools.setup( name = "novelWriter", - version = "0.7.0rc1", + version = "0.7", author = "Veronica Berglyd Olsen", author_email = "code@vkbo.net", description = "A markdown-like document editor for writing novels",