Skip to content

Commit

Permalink
Release 1.0.0 (#748)
Browse files Browse the repository at this point in the history
* Release 1.0.0.

* Release 1.0.0.
  • Loading branch information
c0c0n3 authored Dec 1, 2023
1 parent 93e6d8c commit f8fd27b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# QuantumLeap Release Notes

## 0.9.0-dev
## 1.0.0

### New features

Expand Down
8 changes: 4 additions & 4 deletions 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.9.0-dev" # we'll keep it aligned with QL version
version: "1.0.0" # 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 Expand Up @@ -87,7 +87,7 @@ definitions:
items:
type: string
example:
entities:
entities:
- id: Kitchen
type: Room
attrs:
Expand Down Expand Up @@ -119,7 +119,7 @@ definitions:
example, if aggrPeriod is day, each value of course may not correspond
to original measurements but rather the aggregate of measurements in
each day."

IndexedValues:
type: object
properties:
Expand Down Expand Up @@ -1370,7 +1370,7 @@ paths:
- $ref: '#/parameters/geometry'
- $ref: '#/parameters/coords'
- $ref: '#/parameters/idPattern'

# In Header...
- $ref: '#/parameters/fiware-Service'
- $ref: '#/parameters/fiware-ServicePath'
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.9.0-dev"
"version": "1.0.0"
}
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.9.0-dev'
'version': '1.0.0'
}

0 comments on commit f8fd27b

Please sign in to comment.