Compare commits

..
6 Commits
Author SHA1 Message Date
tanshu 4377016cda Version Bump v15.0.3 2026-08-31 12:11:38 +05:30
tanshu 67209886b9 current trixie does not have yarn 2026-08-31 06:41:31 +00:00
tanshu 4e1c0d1ec7 Version Bump v15.0.2 2026-08-31 10:02:01 +05:30
tanshu c7412f080d Fix: Newer trixie images did not enable yarn. 2026-08-31 04:31:48 +00:00
tanshu d023089720 Version Bump v15.0.1 2026-08-31 09:55:05 +05:30
tanshu dd02a97ba2 Forgot to add the updated uv.lock 2026-08-31 04:25:00 +00:00
7 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:current-trixie-slim AS base
FROM node:lts-trixie-slim AS base
# Install dependencies only when needed
FROM base AS deps
+1 -1
View File
@@ -1 +1 @@
__version__ = "15.0.0"
__version__ = "15.0.3"
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "barker"
version = "15.0.0"
version = "15.0.3"
description = "Point of Sale for a restaurant"
requires-python = ">=3.14"
authors = [{ name = "tanshu", email = "git@tanshu.com" }]
+1 -1
View File
@@ -231,7 +231,7 @@ wheels = [
[[package]]
name = "barker"
version = "15.0.0"
version = "15.0.3"
source = { editable = "." }
dependencies = [
{ name = "aiohttp" },
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "bookie",
"version": "15.0.0",
"version": "15.0.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -1,7 +1,7 @@
export const environment = {
production: true,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '15.0.0',
version: '15.0.3',
};
export const dateFormat = {
+1
View File
@@ -39,6 +39,7 @@ then
sed --in-place --regexp-extended 's/version = "([0-9]{1,2}.[0-9]+.[0-9]+)"/version = "'"$new_version"'"/g' barker/pyproject.toml
(cd barker && uv lock)
git add barker/pyproject.toml
git add barker/uv.lock
sed --in-place --regexp-extended 's/version: '\''([0-9]*.[0-9]+.[0-9]+)'\''/version: '\'"$new_version"\''/g' bookie/src/app/app.environment.ts
git add bookie/src/app/app.environment.ts
sed --in-place --regexp-extended 's/"version": "([0-9]{1,2}.[0-9]+.[0-9]+)"/"version": "'"$new_version"'"/g' bookie/package.json