Skip to content

Commit f8fd27b

Browse files
authored
Release 1.0.0 (#748)
* Release 1.0.0. * Release 1.0.0.
1 parent 93e6d8c commit f8fd27b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

RELEASE_NOTES.md

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

3-
## 0.9.0-dev
3+
## 1.0.0
44

55
### New features
66

specification/quantumleap.yml

+4-4
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.9.0-dev" # we'll keep it aligned with QL version
4+
version: "1.0.0" # 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
@@ -87,7 +87,7 @@ definitions:
8787
items:
8888
type: string
8989
example:
90-
entities:
90+
entities:
9191
- id: Kitchen
9292
type: Room
9393
attrs:
@@ -119,7 +119,7 @@ definitions:
119119
example, if aggrPeriod is day, each value of course may not correspond
120120
to original measurements but rather the aggregate of measurements in
121121
each day."
122-
122+
123123
IndexedValues:
124124
type: object
125125
properties:
@@ -1370,7 +1370,7 @@ paths:
13701370
- $ref: '#/parameters/geometry'
13711371
- $ref: '#/parameters/coords'
13721372
- $ref: '#/parameters/idPattern'
1373-
1373+
13741374
# In Header...
13751375
- $ref: '#/parameters/fiware-Service'
13761376
- $ref: '#/parameters/fiware-ServicePath'

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.9.0-dev"
10+
"version": "1.0.0"
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.9.0-dev'
5+
'version': '1.0.0'
66
}

0 commit comments

Comments
 (0)