diff --git a/CHANGELOG.md b/CHANGELOG.md index b6966df7..1c60d7dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +1.1.2 / 2018-01-23 +================== + +**General** + +* Fixed page links on subdirectory deployments +* Fixed challenge updating on subdirectory deployments +* Fixed broken icon buttons on Safari + +**Themes** + +* Upgraded to Bootstrap 4.0.0 +* Upgraded to jQuery 3.3.1 +* Upgraded to FontAwesome 5.0.4 + + 1.1.1 / 2018-01-08 ================== diff --git a/CTFd/__init__.py b/CTFd/__init__.py index c7bb54b7..264ca35b 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.1' +__version__ = '1.1.2' class CTFdFlask(Flask):