Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion services/api-server/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.8.0
2 changes: 1 addition & 1 deletion services/api-server/openapi.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{

Check failure on line 1 in services/api-server/openapi.json

View workflow job for this annotation

GitHub Actions / OAS backwards compatibility

Error when checking services/api-server/openapi.json
"openapi": "3.1.0",
"info": {
"title": "osparc.io public API",
"description": "osparc-simcore public API specifications",
"version": "0.7.0"
"version": "0.8.0"
},
"paths": {
"/v0/meta": {
Expand Down
6 changes: 3 additions & 3 deletions services/api-server/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0
current_version = 0.8.0
commit = True
message = services/api-server version: {current_version} → {new_version}
tag = False
Expand All @@ -10,12 +10,12 @@ commit_args = --no-verify
[tool:pytest]
asyncio_mode = auto
addopts = --strict-markers
markers =
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
acceptance_test: "marks tests as 'acceptance tests' i.e. does the system do what the user expects? Typically those are workflows."
testit: "marks test to run during development"

[mypy]
plugins =
plugins =
pydantic.mypy
sqlalchemy.ext.mypy.plugin
Loading