feat: update package versions to 1.0.1, improve dose tracking timestamp logic, and enhance release script for signed tags

This commit is contained in:
Daniel Volz
2025-12-29 23:54:29 +01:00
parent 2b59233af2
commit 8132da3c3d
5 changed files with 46 additions and 53 deletions
+2 -2
View File
@@ -95,8 +95,8 @@ if git rev-parse "v${NEW_VERSION}" >/dev/null 2>&1; then
fi
# Create and push tag
echo -e "${BLUE}Creating tag v${NEW_VERSION}...${NC}"
git tag -a "v${NEW_VERSION}" -m "Release v${NEW_VERSION}"
echo -e "${BLUE}Creating signed tag v${NEW_VERSION}...${NC}"
git tag -s "v${NEW_VERSION}" -m "Release v${NEW_VERSION}"
# Push
echo -e "${BLUE}Pushing to origin (GitHub)...${NC}"