diff --git a/CHANGELOG.md b/CHANGELOG.md index adf819468f..5b1d9acc92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ ## Changelog +##### v1.10.0 (2019-12-22): + +- Fix event and speaker image resizing, and add management command to resize event and speaker images which remained to be resized. +Run `python manage.py fix_event_and_speaker_images` to resize images which weren't resized due to the bug +- Optimize link generation of relationships with up to 10X speedup +- Add scheduled job to automatically remove orphan ticket holders with no order ID +- Add created and modified times in ticket holder +- Allow new tickets to have same name as deleted tickets +- Fix PayTM payment gateway + ##### v1.9.0 (2019-11-28): - Fix billing info requirements from attendees diff --git a/app/api/server_version.py b/app/api/server_version.py index e58449295d..a9024b0ef8 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.9.0' +SERVER_VERSION = '1.10.0' info_route = Blueprint('info', __name__) _build = {'version': SERVER_VERSION}