diff --git a/docs/source/change_log.rst b/docs/source/change_log.rst index 0d5115f4..b2090d9e 100644 --- a/docs/source/change_log.rst +++ b/docs/source/change_log.rst @@ -8,9 +8,20 @@ team for note worthy changes. Version 1.x.x ------------- +Version 1.13.1 +^^^^^^^^^^^^^^ + +Released :release:`1.13.1` on April 19th, 2019 + +* Fixed broken references to :py:func:`~king_phisher.startup.start_process` +* Fixed a :py:exc:`KeyError` when creating a campaign for the first time (see: :issue:`365`) +* Updated SQLAlchemy and Jinja2 libraries for security patches + Version 1.13.0 ^^^^^^^^^^^^^^ +Released :release:`1.13.0` on April 4th, 2019 + * Added support for logging MFA tokens with credentials * Added support for using regular expressions to validate credentials * Automatically try to install plugin dependencies with pip from PyPi diff --git a/docs/source/conf.py b/docs/source/conf.py index d58d44dd..72d5a500 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -61,6 +61,7 @@ tab_width = 4 extlinks = { + 'issue': ("https://github.com/{0}/issues/%s".format(GITHUB_REPO), '#'), 'release': ("https://github.com/{0}/releases/tag/v%s".format(GITHUB_REPO), 'v'), 'wiki': ("https://github.com/{0}/wiki/%s".format(GITHUB_REPO), ''), }