Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare 1.0.1-dev cycle #749

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# QuantumLeap Release Notes

## 1.0.1

### New features

### Bug fixes

### Continuous Integration

### Documentation

### Technical debt

## 1.0.0

### New features
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: "1.0.0" # we'll keep it aligned with QL version
version: "1.0.1-dev" # 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": "1.0.0"
"version": "1.0.1-dev"
}
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': '1.0.0'
'version': '1.0.1-dev'
}
Loading