git-copilot-commit 0.3.2__tar.gz → 0.3.4__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.
@@ -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 version=$new_version"
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
- # If version wasn't passed positionally, check for named var
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.3.2
3
+ Version: 0.3.4
4
4
  Summary: Automatically generate and commit changes using copilot
5
5
  Author-email: Dheepak Krishnamurthy <1813121+kdheepak@users.noreply.github.com>
6
6
  License-File: LICENSE