Compare commits

..
2 Commits
Author SHA1 Message Date
tanshu 5fa8580cb9 Version Bump v11.5.1 2023-12-28 14:21:46 +05:30
tanshu 576940471a Fix: Alembic upgrade failed 2023-12-28 14:21:42 +05:30
6 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -53,8 +53,8 @@ def upgrade():
)
op.add_column("products", sa.Column("water", sa.Numeric(precision=15, scale=5), server_default="0", nullable=False))
op.add_column("product_groups", sa.Column("nutritional", sa.Boolean(), server_default=False, nullable=False))
op.add_column("product_groups", sa.Column("ice_cream", sa.Boolean(), server_default=False, nullable=False))
op.add_column("product_groups", sa.Column("nutritional", sa.Boolean(), server_default=sa.text("false"), nullable=False))
op.add_column("product_groups", sa.Column("ice_cream", sa.Boolean(), server_default=sa.text("false"), nullable=False))
# ### end Alembic commands ###
+1 -1
View File
@@ -1 +1 @@
__version__ = "11.5.0"
__version__ = "11.5.1"
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "brewman"
version = "11.5.0"
version = "11.5.1"
description = "Accounting plus inventory management for a restaurant."
authors = ["tanshu <git@tanshu.com>"]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "overlord",
"version": "11.5.0",
"version": "11.5.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
@@ -2,6 +2,6 @@ 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.5.0',
version: '11.5.1',
title: 'HnG / TGB',
};
+1 -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.5.0',
version: '11.5.1',
title: 'HnG / TGB',
};