git-copilot-commit 0.3.2__tar.gz → 0.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/.justfile +4 -11
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/PKG-INFO +1 -1
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/.github/workflows/ci.yml +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/.gitignore +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/.python-version +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/LICENSE +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/README.md +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/pyproject.toml +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/__init__.py +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/cli.py +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/git.py +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/prompts/commit-message-generator-prompt.md +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/py.typed +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/settings.py +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/src/git_copilot_commit/version.py +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/uv.lock +0 -0
- {git_copilot_commit-0.3.2 → git_copilot_commit-0.3.3}/vhs/demo.vhs +0 -0
|
@@ -7,6 +7,7 @@ default:
|
|
|
7
7
|
commit *args:
|
|
8
8
|
uv run git-copilot-commit commit {{args}}
|
|
9
9
|
|
|
10
|
+
|
|
10
11
|
# Get the next version based on bump type
|
|
11
12
|
next-version type="patch":
|
|
12
13
|
#!/usr/bin/env bash
|
|
@@ -41,22 +42,14 @@ bump type="patch":
|
|
|
41
42
|
git tag "$new_version"
|
|
42
43
|
|
|
43
44
|
echo "✓ Created commit and tag for $new_version"
|
|
44
|
-
echo " Run: just release
|
|
45
|
+
echo " Run: `just release $new_version`"
|
|
45
46
|
|
|
46
47
|
# Push commit, tag, and create GitHub release
|
|
47
|
-
release version
|
|
48
|
+
release version:
|
|
48
49
|
#!/usr/bin/env bash
|
|
49
50
|
set -euo pipefail
|
|
50
51
|
|
|
51
|
-
|
|
52
|
-
if [ -z "$version" ]; then
|
|
53
|
-
version="{{version}}" # falls back to global variable if set
|
|
54
|
-
fi
|
|
55
|
-
|
|
56
|
-
if [ -z "$version" ]; then
|
|
57
|
-
echo "Error: version not specified" >&2
|
|
58
|
-
exit 1
|
|
59
|
-
fi
|
|
52
|
+
version="{{version}}"
|
|
60
53
|
|
|
61
54
|
echo "Pushing commit and tag for $version..."
|
|
62
55
|
git push
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|