From 9bbe7b263fa95e676b55ea434f81758898418b2c Mon Sep 17 00:00:00 2001 From: Asaf Cohen Date: Sun, 27 Jun 2021 17:26:06 +0300 Subject: [PATCH 1/2] fix requirements inconsistencies --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 449d06026..0aae5401b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,12 @@ +idna<3,>=2.5 typer aiofiles aiohttp broadcaster[postgres] colorama +fastapi==0.65.2 fastapi_websocket_pubsub>=0.1.18 fastapi_websocket_rpc>=0.1.18 -fastapi==0.65.2 GitPython gunicorn ipython From 3ca700b5e0e24adf054142184af12d4660eeb88b Mon Sep 17 00:00:00 2001 From: Asaf Cohen Date: Sun, 27 Jun 2021 17:27:06 +0300 Subject: [PATCH 2/2] bump version: 0.1.9 --- setup/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/__version__.py b/setup/__version__.py index b2271bfdd..41b1a9af8 100644 --- a/setup/__version__.py +++ b/setup/__version__.py @@ -7,7 +7,7 @@ Project homepage: https://github.com/authorizon/opal """ -VERSION = (0, 1, 8) +VERSION = (0, 1, 9) VERSION_STRING = '.'.join(map(str,VERSION)) __version__ = VERSION_STRING