diff --git a/docs/source/change_log.rst b/docs/source/change_log.rst index 9d48bf20..d570d4f9 100644 --- a/docs/source/change_log.rst +++ b/docs/source/change_log.rst @@ -11,7 +11,7 @@ Version 1.x.x Version 1.14.0 ^^^^^^^^^^^^^^ -*In Progress* +Released :release:`1.14.0` on August 1st, 2019 * Added the ``Message-ID`` MIME header to outgoing messages * Attempt SSH authentication with all agent-provided SSH keys @@ -20,6 +20,8 @@ Version 1.14.0 * Added server support for installing missing plugin requirements during initialization * Added asynchronous RPC methods to the client * Added GraphQL and database schema documentation +* Changed Target URL to Web Server URL in Campaign Editor +* Added the ability issue SSL Certificates through certbot Version 1.13.1 ^^^^^^^^^^^^^^ diff --git a/king_phisher/version.py b/king_phisher/version.py index 9c9f67f2..1cc27f9b 100644 --- a/king_phisher/version.py +++ b/king_phisher/version.py @@ -79,7 +79,7 @@ def get_revision(encoding='utf-8'): version_info = collections.namedtuple('version_info', ('major', 'minor', 'micro'))(1, 14, 0) """A tuple representing the version information in the format ('major', 'minor', 'micro')""" -version_label = 'beta1' +version_label = '' """A version label such as alpha or beta.""" version = "{0}.{1}.{2}".format(version_info.major, version_info.minor, version_info.micro)