git-copilot-commit 0.3.1__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.
@@ -42,7 +42,7 @@ bump type="patch":
42
42
  git tag "$new_version"
43
43
 
44
44
  echo "✓ Created commit and tag for $new_version"
45
- echo " Run: just release version=$new_version"
45
+ echo " Run: `just release $new_version`"
46
46
 
47
47
  # Push commit, tag, and create GitHub release
48
48
  release version:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.3.1
3
+ Version: 0.3.3
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
@@ -28,7 +28,7 @@ def version_callback(value: bool):
28
28
  @app.callback(invoke_without_command=True)
29
29
  def main(
30
30
  ctx: typer.Context,
31
- version: bool = typer.Option(
31
+ _: bool = typer.Option(
32
32
  False, "--version", callback=version_callback, help="Show version and exit"
33
33
  ),
34
34
  ):