Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare for v1.11.0 #6771

Merged
merged 2 commits into from
Jan 22, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Changelog

#### v1.11.0 (2020-01-23):

- Fix count query of tickets.
- Restricting deletion of orders except by admin.
- Fix missing fields and incorrect column value in session csv export.
- Moved execution code from __init__.
- Addition of field for Promoted Events, Instagram Speaker URL, Age Groups for Attendee.
- Replaced jobs running with APS to celery-beat.
- Fix sessions can not be edited after CFS has ended.
- Fix remove secret from DB and enforce env.
- Removed events-orga endpoint, elasticsearch initialisation.
- Fix superadmin can delete spam events.

##### 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.
Expand Down
2 changes: 1 addition & 1 deletion app/api/server_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from flask import jsonify, Blueprint

SERVER_VERSION = '1.10.0'
SERVER_VERSION = '1.11.0'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Black would make changes.


info_route = Blueprint('info', __name__)
_build = {'version': SERVER_VERSION}
Expand Down