Skip to content

Commit 29053e8

Browse files
authored
Release 0.8.1 (#464)
1 parent ccae09d commit 29053e8

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

RELEASE_NOTES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# QuantumLeap Release Notes
22

3+
## 0.8.1
4+
5+
### New features
6+
7+
- Optimise Gunicorn config for Docker image (#410)
8+
- Batch inserts (#445)
9+
- Increase resiliency to badly formatted data and support data casting (#444)
10+
11+
### Bug fixes
12+
13+
- Fix broken health check if no cache is used (#446)
14+
315
## 0.8.0
416

517
### New features

specification/quantumleap.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
swagger: '2.0' # For 3.0 see (https://github.com/zalando/connexion/issues/420)
22
info:
33
title: "QuantumLeap API"
4-
version: "0.8.0" # we'll keep it aligned with QL version
4+
version: "0.8.1" # we'll keep it aligned with QL version
55
host: "localhost:8668" # it'll run in the same container, hence localhost.
66
produces:
77
- text/plain

src/reporter/tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ def test_version():
77
r = requests.get('{}'.format(version_url))
88
assert r.status_code == 200, r.text
99
assert r.json() == {
10-
"version": "0.8.x"
10+
"version": "0.8.1"
1111
}

src/reporter/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
def version():
44
return {
5-
'version': '0.8.x'
5+
'version': '0.8.1'
66
}

0 commit comments

Comments
 (0)