Skip to content

Commit fbf2d36

Browse files
authored
Bump to 0.7.5 (#251)
* Bump to 0.7.5
1 parent ee909c1 commit fbf2d36

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

RELEASE_NOTES.md

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

3+
## 0.7.5
4+
5+
- Fix bug with lastN parameter (#249)
6+
- Update specification version to align with QL versions (#218)
7+
38
## 0.7.4
49

510
- Fix bug with Custom Time Index header handling (#247)

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.7" # we'll keep it aligned with QL version
4+
version: "0.7.5" # we'll keep it aligned with QL version
55
host: "localhost:8668" # it'll run in the same container, hence localhost.
66
basePath: /v2
77
produces:

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.7.4"
10+
"version": "0.7.5"
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.7.4'
5+
'version': '0.7.5'
66
}

0 commit comments

Comments
 (0)