From 2e2d458f36278d14c26ec455a11ca5775bf8221f Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Mon, 8 Jan 2018 01:56:06 -0500 Subject: [PATCH] Mark 1.1.1 (#544) * Marking 1.1.1 --- CHANGELOG.md | 18 ++++++++++++++++++ CTFd/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38a5af81..b6966df7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +1.1.1 / 2018-01-08 +================== + +**General** + +* Fixed regression where users could not be promoted to admins or verified. +* Fixed two icons in the Media Library which were not updated to Font Awesome 5. +* Challenge previews now include tags, hints, and files. +* Fixed an issue where a page could not be published immediately after being saved. + +**Themes** + +* Upgraded to Bootstrap 4 Beta v3. No major changes needed by themes. +* Fixed issue where the frozen message was not centered in the team page. +* The JavaScript `update()` function now has a callback instead of being hardcoded. +* `chalboard.js` now passes `script_root` into the Nunjucks templates so that file downloads work properly under subdirectories. + + 1.1.0 / 2017-12-22 ================== diff --git a/CTFd/__init__.py b/CTFd/__init__.py index e0ee3c68..c7bb54b7 100644 --- a/CTFd/__init__.py +++ b/CTFd/__init__.py @@ -17,7 +17,7 @@ if sys.version_info[0] < 3: reload(sys) sys.setdefaultencoding("utf-8") -__version__ = '1.1.0' +__version__ = '1.1.1' class CTFdFlask(Flask):