Skip to content

Commit

Permalink
Release 0.8.2 (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
chicco785 authored Aug 12, 2021
1 parent 923333f commit f3844cb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# QuantumLeap Release Notes

## 0.8.2-dev
## 0.8.2

### New features

- Support for CRATE 4.5 (#430)
- Fix "None" Tenant query caching (required for no multi-tenant orion deployment)
- Introduced queue workflow support & upgraded gunicorn (#501)

### Bug fixes

- Fix "None" Tenant query caching (required for no multi-tenant orion deployment)

### Documentation

### Technical debt
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.8.2-dev" # we'll keep it aligned with QL version
version: "0.8.2" # we'll keep it aligned with QL version
host: "localhost:8668" # it'll run in the same container, hence localhost.
produces:
- text/plain
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.8.2-dev"
"version": "0.8.2"
}
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.8.2-dev'
'version': '0.8.2'
}

0 comments on commit f3844cb

Please sign in to comment.