Compare commits

..
3 Commits
Author SHA1 Message Date
tanshu f42e4d3628 Version Bump v15.1.2 2026-08-26 11:48:24 +05:30
tanshu c534aaffa3 version bump would make the lock file out of date. 2026-08-26 06:18:09 +00:00
tanshu 141f82f832 Version Bump v15.1.1 2026-08-26 06:14:01 +00:00
7 changed files with 18 additions and 10 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "15.1.0"
__version__ = "15.1.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "brewman"
version = "15.1.0"
version = "15.1.2"
description = "Accounting plus inventory management for a restaurant."
requires-python = ">=3.14"
authors = [{ name = "tanshu", email = "git@tanshu.com" }]
+1 -1
View File
@@ -211,7 +211,7 @@ wheels = [
[[package]]
name = "brewman"
version = "15.0.0"
version = "15.1.2"
source = { editable = "." }
dependencies = [
{ name = "alembic" },
+10 -3
View File
@@ -32,7 +32,9 @@
"input": "public"
}
],
"styles": ["src/styles.sass"]
"styles": [
"src/styles.sass"
]
},
"configurations": {
"production": {
@@ -79,14 +81,19 @@
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
},
"cli": {
"schematicCollections": ["@angular-eslint/schematics"],
"schematicCollections": [
"@angular-eslint/schematics"
],
"analytics": false
},
"schematics": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "overlord",
"version": "15.1.0",
"version": "15.1.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -1,6 +1,6 @@
export const environment = {
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '15.1.0',
version: '15.1.2',
title: 'HnG / TGB',
};
+2 -1
View File
@@ -31,7 +31,8 @@ then
sed --in-place --regexp-extended 's/"([0-9]{1,2}.[0-9]+.[0-9]+)"/"'"$new_version"'"/g' brewman/brewman/__version__.py
git add brewman/brewman/__version__.py
sed --in-place --regexp-extended 's/version = "([0-9]{1,2}.[0-9]+.[0-9]+)"/version = "'"$new_version"'"/g' brewman/pyproject.toml
git add brewman/pyproject.toml
(cd brewman && uv lock)
git add brewman/pyproject.toml brewman/uv.lock
sed --in-place --regexp-extended 's/version: '\''([0-9]*.[0-9]+.[0-9]+)'\''/version: '\'"$new_version"\''/g' overlord/src/app/app.environment.ts
git add overlord/src/app/app.environment.ts
sed --in-place --regexp-extended 's/"version": "([0-9]{1,2}.[0-9]+.[0-9]+)"/"version": "'"$new_version"'"/g' overlord/package.json