Skip to content

Commit 37c7097

Browse files
chore: Release v1.7.0 (#6540)
1 parent 75229f0 commit 37c7097

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Changelog
2+
3+
##### v1.8.0 (Unreleased):
4+
5+
- No Changes
6+
7+
##### v1.7.0 (2019-10-19):
8+
9+
- ** BREAKING ** Requires Python 3.7
10+
- Add info endpoint to get server version
11+
- Add management script to switch modules on or off
12+
- Increase gunicorn workers in docker and add options for configuration
13+
- Fix CSV export *(included as hotfix in previous version)*
14+
- Fix order PDF not found errors by mounting `generated` folder in docker
15+
- Fix ICal attribute errors and add tests
16+
- Fix Pentabarf export and add tests
17+
- Add workaround for multiprocess engine forking
18+
- Use pool pre ping option to avoid dropped connections
19+
- Add .env in docker compose to override environment variables
20+
- Configure redis and celery in sentry integration
21+
- Convert some classes to dataclasses
22+
- Update dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build Status](https://travis-ci.org/fossasia/open-event-server.svg?branch=development)](https://travis-ci.org/fossasia/open-event-server)
77
[![CircleCI Build Staus Badge](https://img.shields.io/circleci/build/github/fossasia/open-event-server?label=CircleCI%20Build)](https://www.circleci.com/gh/fossasia/open-event-server)
88
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1ac554483fac462797ffa5a8b9adf2fa?style=flat-square)](https://www.codacy.com/app/fossasia/open-event-server)
9-
[![Codecov branch](https://codecov.io/gh/fossasia/open-event-server/branch/master/graph/badge.svg?style=flat-square)](https://codecov.io/gh/fossasia/open-event-server)
9+
[![Codecov branch](https://codecov.io/gh/fossasia/open-event-server/branch/development/graph/badge.svg?style=flat-square)](https://codecov.io/gh/fossasia/open-event-server)
1010
[![Gitter](https://img.shields.io/badge/chat-on%20gitter-ff006f.svg?style=flat-square)](https://gitter.im/fossasia/open-event-server)
1111
[![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
1212
[![Mailing List](https://img.shields.io/badge/Mailing%20List-FOSSASIA-blue.svg)](https://groups.google.com/forum/#!forum/open-event)

app/api/server_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from flask import jsonify, Blueprint
22

3-
SERVER_VERSION = '1.7.0-SNAPSHOT'
3+
SERVER_VERSION = '1.7.0'
44

5-
info_route = Blueprint('info', __name__, url_prefix='/v1')
5+
info_route = Blueprint('info', __name__)
66
_build = {'version': SERVER_VERSION}
77

88

0 commit comments

Comments
 (0)