Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Feb 6, 2022
1 parent 8933987 commit 9f57a11
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/examples/client-example/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@
},
"engine_version": {
"type": "string",
"default": "0.14.0"
"default": "0.14.1"
}
},
"x-module-name": "hopeit.server.config",
Expand Down
2 changes: 1 addition & 1 deletion apps/examples/simple-example/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2020,7 +2020,7 @@
},
"engine_version": {
"type": "string",
"default": "0.14.0"
"default": "0.14.1"
}
},
"x-module-name": "hopeit.server.config",
Expand Down
13 changes: 10 additions & 3 deletions docs/source/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
Release Notes
=============

Version 0.14.1
______________
- Reworked web server startup:
- Fixed automatic stream and services start on server initialization
- Removed using of `loop.run_until_complete` in favour of aiohttp `on_startup` hooks


Version 0.14.0
______________
- Support for web.StreamResponse
- Added read() method to PreprocessFileHook to be used by libraries reading the file in chunks.
(Support is limited to read binary mode).
- Support for web.StreamResponse
- Added read() method to PreprocessFileHook to be used by libraries reading the file in chunks.
(Support is limited to read binary mode).


Version 0.13.0
Expand Down
2 changes: 1 addition & 1 deletion engine/src/hopeit/server/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys

ENGINE_NAME = "hopeit.engine"
ENGINE_VERSION = "0.14.0"
ENGINE_VERSION = "0.14.1"

# Major.Minor version to be used in App versions and Api endpoints for Apps/Plugins
APPS_API_VERSION = '.'.join(ENGINE_VERSION.split('.')[0:2])
Expand Down
2 changes: 1 addition & 1 deletion plugins/ops/apps-visualizer/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@
},
"engine_version": {
"type": "string",
"default": "0.14.0"
"default": "0.14.1"
}
},
"x-module-name": "hopeit.server.config",
Expand Down

0 comments on commit 9f57a11

Please sign in to comment.