From 1515c33e7ba1b2edda837cac1b9a61e86e8e9871 Mon Sep 17 00:00:00 2001 From: tanshu Date: Tue, 10 Aug 2021 11:29:53 +0530 Subject: [PATCH] arq is right now not compatible with aioredis 2.0.0 So pinning the aioredis to 1.3.1 for the time being --- barker/barker/__version__.py | 2 +- barker/pyproject.toml | 3 ++- bookie/package.json | 2 +- bookie/src/environments/environment.prod.ts | 2 +- bookie/src/environments/environment.ts | 2 +- frank/pyproject.toml | 3 ++- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/barker/barker/__version__.py b/barker/barker/__version__.py index c52bf71..ace4f12 100644 --- a/barker/barker/__version__.py +++ b/barker/barker/__version__.py @@ -1 +1 @@ -__version__ = "9.6.0" +__version__ = "9.7.0" diff --git a/barker/pyproject.toml b/barker/pyproject.toml index 5cb545c..de21d7d 100644 --- a/barker/pyproject.toml +++ b/barker/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "barker" -version = "9.6.0" +version = "9.7.0" description = "Point of Sale for a restaurant" authors = ["tanshu "] @@ -21,6 +21,7 @@ pydantic = {extras = ["dotenv"], version = "^1.8.2"} starlette = "^0.14.2" arq = "^0.20" aiohttp = "^3.7.4" +aioredis = "^1.3.1" [tool.poetry.dev-dependencies] flake8 = "^3.9.1" diff --git a/bookie/package.json b/bookie/package.json index 310c73e..afe54ab 100644 --- a/bookie/package.json +++ b/bookie/package.json @@ -1,6 +1,6 @@ { "name": "bookie", - "version": "9.6.0", + "version": "9.7.0", "scripts": { "ng": "ng", "start": "ng serve", diff --git a/bookie/src/environments/environment.prod.ts b/bookie/src/environments/environment.prod.ts index d5308d8..00ff1a3 100644 --- a/bookie/src/environments/environment.prod.ts +++ b/bookie/src/environments/environment.prod.ts @@ -1,5 +1,5 @@ export const environment = { production: true, ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry - version: '9.6.0', + version: '9.7.0', }; diff --git a/bookie/src/environments/environment.ts b/bookie/src/environments/environment.ts index d5b4bcb..e7e434a 100644 --- a/bookie/src/environments/environment.ts +++ b/bookie/src/environments/environment.ts @@ -5,7 +5,7 @@ export const environment = { production: false, ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry - version: '9.6.0', + version: '9.7.0', }; /* diff --git a/frank/pyproject.toml b/frank/pyproject.toml index ced5231..d8d12fc 100644 --- a/frank/pyproject.toml +++ b/frank/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "frank" -version = "9.6.0" +version = "9.7.0" description = "Point of Sale for a restaurant" authors = ["tanshu "] @@ -9,6 +9,7 @@ python = "^3.8" pydantic = {extras = ["dotenv"], version = "^1.8.2"} arq = "^0.20" aiohttp = "^3.7.4" +aioredis = "^1.3.1" [build-system] requires = ["poetry-core>=1.0.0"]