2 Commits

Author SHA1 Message Date
a28727756b Version Bump v11.0.1 2022-12-12 12:08:45 +05:30
3b73d468ea Chore: upgraded fastapi 2022-12-12 12:08:40 +05:30
5 changed files with 9 additions and 9 deletions

View File

@ -1 +1 @@
__version__ = "11.0.0"
__version__ = "11.0.1"

View File

@ -1,24 +1,24 @@
[tool.poetry]
name = "brewman"
version = "11.0.0"
version = "11.0.1"
description = "Accounting plus inventory management for a restaurant."
authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies]
python = "^3.11"
uvicorn = {extras = ["standard"], version = "^0.19.0"}
fastapi = "^0.87.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
fastapi = "^0.88.0"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg2-binary = "^2.9.5"
SQLAlchemy = {extras = ["mypy"], version = "^1.4.44"}
SQLAlchemy = {extras = ["mypy"], version = "^1.4.45"}
python-multipart = "^0.0.5"
PyJWT = "^2.6.0"
alembic = "^1.8.1"
itsdangerous = "^2.1.2"
python-dotenv = "^0.21.0"
pydantic = {extras = ["dotenv"], version = "^1.10.2"}
starlette = "^0.21.0"
starlette = "^0.22.0"
[tool.poetry.dev-dependencies]
flake8 = "^5.0.4"

View File

@ -1,6 +1,6 @@
{
"name": "overlord",
"version": "11.0.0",
"version": "11.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",

View File

@ -2,5 +2,5 @@ export const environment = {
production: true,
// eslint-disable-next-line @typescript-eslint/naming-convention
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.0.0',
version: '11.0.1',
};

View File

@ -6,7 +6,7 @@ export const environment = {
production: false,
// eslint-disable-next-line @typescript-eslint/naming-convention
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '11.0.0',
version: '11.0.1',
};
/*