diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ce365dea6..b76f339c3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changelog +#### v1.11.1 (2020-01-23): + +- Fix event fee notification task being triggered every minute + #### v1.11.0 (2020-01-23): - **BREAKING:** Fix security issues related to secret key. You **MUST** add the current secret key set in DB as `SECRET_KEY` environment variable before upgrading. After upgrading, the column will be removed from DB diff --git a/app/api/server_version.py b/app/api/server_version.py index 98dc8541da..cd11a77152 100644 --- a/app/api/server_version.py +++ b/app/api/server_version.py @@ -1,6 +1,6 @@ from flask import jsonify, Blueprint -SERVER_VERSION = '1.11.0' +SERVER_VERSION = '1.11.1' info_route = Blueprint('info', __name__) _build = {'version': SERVER_VERSION}