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.13.0 #6854

Merged
merged 2 commits into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

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

#### v1.13.0 (2020-02-20):

- Fix cron job timings preventing multiple emails to attendees
- Change email links to be more accessible
- Fix invoice email generation errors
- Add proper etag support by changing to weak etags

#### v1.12.0 (2020-02-02):

- Add check if donation ticket has payment method enabled
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 Blueprint, jsonify

SERVER_VERSION = '1.12.0'
SERVER_VERSION = '1.13.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