From c2afaa29f3eaec01a64869dcb39b44386f355a73 Mon Sep 17 00:00:00 2001 From: Spencer McIntyre Date: Fri, 18 Mar 2016 17:43:26 -0400 Subject: [PATCH] Set the version to v1.2.0 final --- docs/source/change_log.rst | 2 +- king_phisher/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/change_log.rst b/docs/source/change_log.rst index 30359760..f50da8ea 100644 --- a/docs/source/change_log.rst +++ b/docs/source/change_log.rst @@ -10,7 +10,7 @@ Version 1.x.x Version 1.2.0 ^^^^^^^^^^^^^ -*In Progress* +Released :release:`1.2.0` on March 18th, 2016 * SSH host key validation * Install script command line flags diff --git a/king_phisher/version.py b/king_phisher/version.py index 1e1be998..7274bae8 100644 --- a/king_phisher/version.py +++ b/king_phisher/version.py @@ -66,7 +66,7 @@ def get_revision(): version_info = collections.namedtuple('version_info', ['major', 'minor', 'micro'])(1, 2, 0) """A tuple representing the version information in the format ('major', 'minor', 'micro')""" -version_label = 'beta' +version_label = '' """A version label such as alpha or beta.""" version = "{0}.{1}.{2}".format(version_info.major, version_info.minor, version_info.micro) """A string representing the full version information."""