Skip to content

Commit a476968

Browse files
committed
chore: bump version 1.0.2
1 parent 0be1e49 commit a476968

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
name: Release Package
2+
permissions:
3+
contents: write
24

35
on:
46
push:

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ release VERSION="":
9595
if [ -n "$(git diff --cached)" ] || [ -n "$(git diff)" ]; then
9696
echo "Committing version changes..."
9797
git add pyproject.toml tarot_canvas/_version.py
98-
git commit -m "Bump version to $NEW_VERSION"
98+
git commit -m "chore: bump version to $NEW_VERSION"
9999
fi
100100

101101
# Create and push tag
@@ -121,5 +121,6 @@ release VERSION="":
121121
echo ""
122122
echo "Next steps:"
123123
echo "1. Push the tag to trigger the GitHub Action:"
124+
echo -e " ${YELLOW}git push origin main"
124125
echo -e " ${YELLOW}git push origin $TAG_NAME${NC}"
125126

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "tarot-canvas"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
description = "A cross-platform Qt6 application for viewing and exploring tarot decks"
99
authors = ["Adam Fidel <adam@fidel.id>"]
1010
readme = "README.md"

tarot_canvas/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information for Tarot Canvas."""
22

3-
__version__ = "1.0.1"
3+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)