Version Bump v15.2.9

This commit is contained in:
2026-09-11 15:38:59 +05:30
parent 92e960d75d
commit 75ccbdc6f9
5 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "15.2.8" __version__ = "15.2.9"
+2 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "brewman" name = "brewman"
version = "15.2.8" version = "15.2.9"
description = "Accounting plus inventory management for a restaurant." description = "Accounting plus inventory management for a restaurant."
requires-python = ">=3.14" requires-python = ">=3.14"
authors = [{ name = "tanshu", email = "git@tanshu.com" }] authors = [{ name = "tanshu", email = "git@tanshu.com" }]
@@ -10,6 +10,7 @@ dependencies = [
"cryptography>=50.0.0", "cryptography>=50.0.0",
"fastapi[all]>=0.141.1", "fastapi[all]>=0.141.1",
"gunicorn>=26.2.0", "gunicorn>=26.2.0",
"httpx>=0.28.1",
"itsdangerous>=2.2.0", "itsdangerous>=2.2.0",
"openpyxl>=3.1.5", "openpyxl>=3.1.5",
"pandas>=3.0.5", "pandas>=3.0.5",
+3 -1
View File
@@ -211,7 +211,7 @@ wheels = [
[[package]] [[package]]
name = "brewman" name = "brewman"
version = "15.2.8" version = "15.2.9"
source = { editable = "." } source = { editable = "." }
dependencies = [ dependencies = [
{ name = "alembic" }, { name = "alembic" },
@@ -219,6 +219,7 @@ dependencies = [
{ name = "cryptography" }, { name = "cryptography" },
{ name = "fastapi", extra = ["all"] }, { name = "fastapi", extra = ["all"] },
{ name = "gunicorn" }, { name = "gunicorn" },
{ name = "httpx" },
{ name = "itsdangerous" }, { name = "itsdangerous" },
{ name = "openpyxl" }, { name = "openpyxl" },
{ name = "pandas" }, { name = "pandas" },
@@ -251,6 +252,7 @@ requires-dist = [
{ name = "cryptography", specifier = ">=50.0.0" }, { name = "cryptography", specifier = ">=50.0.0" },
{ name = "fastapi", extras = ["all"], specifier = ">=0.141.1" }, { name = "fastapi", extras = ["all"], specifier = ">=0.141.1" },
{ name = "gunicorn", specifier = ">=26.2.0" }, { name = "gunicorn", specifier = ">=26.2.0" },
{ name = "httpx", specifier = ">=0.28.1" },
{ name = "itsdangerous", specifier = ">=2.2.0" }, { name = "itsdangerous", specifier = ">=2.2.0" },
{ name = "openpyxl", specifier = ">=3.1.5" }, { name = "openpyxl", specifier = ">=3.1.5" },
{ name = "pandas", specifier = ">=3.0.5" }, { name = "pandas", specifier = ">=3.0.5" },
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "overlord", "name": "overlord",
"version": "15.2.8", "version": "15.2.9",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",
+1 -1
View File
@@ -1,6 +1,6 @@
export const environment = { export const environment = {
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '15.2.8', version: '15.2.9',
title: 'HnG / TGB', title: 'HnG / TGB',
}; };