feat: Update version to 1.7.3 in Makefile, docker-build.sh, and pyproject.toml

This commit is contained in:
William Valentin
2025-08-01 13:21:48 -07:00
parent 41d91d9c30
commit 623050478a
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
TARGET=thechart
VERSION=1.6.1
VERSION=1.7.3
ROOT=/home/will
ICON=chart-671.png
SHELL=fish
@@ -85,7 +85,7 @@ install: ## Set up the development environment
@echo "To run tests: make test"
build: ## Build the Docker image
@echo "Building the Docker image..."
docker buildx build --platform linux/amd64,linux/arm64 -t ${IMAGE} --push .
docker buildx build --platform linux/amd64 -t ${IMAGE} --push .
deploy: ## Deploy the application as a standalone executable
@echo "Deploying the application..."
pyinstaller --name ${TARGET} --optimize 2 --onefile --windowed --hidden-import='PIL._tkinter_finder' --icon='${ICON}' --add-data="./.env:." --add-data='./chart-671.png:.' --add-data='./thechart_data.csv:.' --log-level=DEBUG src/main.py

View File

@@ -1,19 +1,19 @@
#!/usr/bin/bash
CONTAINER_ENGINE="docker" # podman | docker
VERSION="v1.0.0"
VERSION="v1.7.3"
REGISTRY="gitea-http.taildb3494.ts.net/will/thechart"
if [ "$CONTAINER_ENGINE" == "podman" ];
then
buildah build \
-t $REGISTRY:$VERSION \
--platform linux/amd64,linux/arm64/v8 \
--platform linux/amd64 \
--no-cache .
else
DOCKER_BUILDKIT=1 \
docker buildx build \
--platform linux/amd64,linux/arm64/v8 \
--platform linux/amd64 \
-t $REGISTRY:$VERSION \
--no-cache \
--push .

View File

@@ -1,6 +1,6 @@
[project]
name = "thechart"
version = "1.6.1"
version = "1.7.3"
description = "Chart to monitor your medication intake over time."
readme = "README.md"
requires-python = ">=3.13"

2
uv.lock generated
View File

@@ -698,7 +698,7 @@ wheels = [
[[package]]
name = "thechart"
version = "1.6.1"
version = "1.7.3"
source = { virtual = "." }
dependencies = [
{ name = "colorlog" },