diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b105145f..637f99d5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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 diff --git a/specification/quantumleap.yml b/specification/quantumleap.yml index b2df48c0..2195ec76 100644 --- a/specification/quantumleap.yml +++ b/specification/quantumleap.yml @@ -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 diff --git a/src/reporter/tests/test_version.py b/src/reporter/tests/test_version.py index 46503a8c..ce6595be 100644 --- a/src/reporter/tests/test_version.py +++ b/src/reporter/tests/test_version.py @@ -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" } diff --git a/src/reporter/version.py b/src/reporter/version.py index a44732ac..06c75a4e 100644 --- a/src/reporter/version.py +++ b/src/reporter/version.py @@ -2,5 +2,5 @@ def version(): return { - 'version': '0.8.2-dev' + 'version': '0.8.2' }