Skip to content

Commit

Permalink
Version 0.11.0-rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjezek98 committed May 27, 2020
1 parent 037dfab commit ee4cf0f
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

__version__ = "0.11.0-rc5"
__version__ = "0.11.0-rc6"

# -- Project information -----------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/fakeprinter/fakeprinter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from flask_cors import CORS, cross_origin
from werkzeug.utils import secure_filename

__version__ = "0.11.0-rc5"
__version__ = "0.11.0-rc6"
__author__ = "Jirka Chadima"
__copyright__ = (
"Copyright (C) 2019 Fragaria s.r.o. - Released under terms of AGPLv3 License"
Expand Down
2 changes: 1 addition & 1 deletion src/karmen_backend/openapi/swagger.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
openapi: 3.0.0
info:
version: '0.11.0-rc5'
version: '0.11.0-rc6'
title: 'Karmen API'
description: 'API of https://github.com/fragaria/karmen'
tags:
Expand Down
2 changes: 1 addition & 1 deletion src/karmen_backend/server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import connexion


__version__ = "0.11.0-rc5"
__version__ = "0.11.0-rc6"
__author__ = "Jirka Chadima"
__copyright__ = (
"Copyright (C) 2019 Fragaria s.r.o. - Released under terms of AGPLv3 License"
Expand Down
1 change: 0 additions & 1 deletion src/karmen_backend/server/routes/printers.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,6 @@ def printer_patch(org_uuid, printer_uuid):
@validate_org_access()
@cross_origin()
def printer_change_connection(org_uuid, printer_uuid):
return "", 500
# TODO this has to be streamlined, octoprint sometimes cannot handle two connect commands at once
printer_inst = get_printer_inst(org_uuid, printer_uuid)
data = request.json
Expand Down
2 changes: 1 addition & 1 deletion src/karmen_frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/karmen_frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"plugin:prettier/recommended"
]
},
"version": "0.11.0-rc5",
"version": "0.11.0-rc6",
"scripts": {
"eject": "react-scripts eject",
"cypress": "cypress open",
Expand Down

0 comments on commit ee4cf0f

Please sign in to comment.