Skip to content

Commit

Permalink
Bump to 0.7.5 (#251)
Browse files Browse the repository at this point in the history
* Bump to 0.7.5
  • Loading branch information
taliaga authored Sep 10, 2019
1 parent ee909c1 commit fbf2d36
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# QuantumLeap Release Notes

## 0.7.5

- Fix bug with lastN parameter (#249)
- Update specification version to align with QL versions (#218)

## 0.7.4

- Fix bug with Custom Time Index header handling (#247)
Expand Down
2 changes: 1 addition & 1 deletion specification/quantumleap.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
swagger: '2.0' # For 3.0 see (https://github.com/zalando/connexion/issues/420)
info:
title: "QuantumLeap API"
version: "0.7" # we'll keep it aligned with QL version
version: "0.7.5" # we'll keep it aligned with QL version
host: "localhost:8668" # it'll run in the same container, hence localhost.
basePath: /v2
produces:
Expand Down
2 changes: 1 addition & 1 deletion src/reporter/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ def test_version():
r = requests.get('{}'.format(version_url))
assert r.status_code == 200, r.text
assert r.json() == {
"version": "0.7.4"
"version": "0.7.5"
}
2 changes: 1 addition & 1 deletion src/reporter/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

def version():
return {
'version': '0.7.4'
'version': '0.7.5'
}

0 comments on commit fbf2d36

Please sign in to comment.