git-copilot-commit 0.1.11__tar.gz → 0.1.12__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.
@@ -13,6 +13,9 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
15
  - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 0 # Fetch full history
18
+ fetch-tags: true # Fetch all tags
16
19
 
17
20
  - name: Install uv
18
21
  uses: astral-sh/setup-uv@v6
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-copilot-commit
3
- Version: 0.1.11
3
+ Version: 0.1.12
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
@@ -36,3 +36,6 @@ dirty = "{base_version}+d{build_date:%Y%m%d}"
36
36
 
37
37
  distance-dirty = "{next_version}.dev{distance}+{vcs}{rev}.d{build_date:%Y%m%d}"
38
38
  # Example formatted version: 1.2.4.dev42+ge174a1f.d20230922
39
+
40
+ [tool.versioningit.fallback]
41
+ version = "0.1.0.dev0"
@@ -0,0 +1,3 @@
1
+ import importlib.metadata
2
+
3
+ __version__ = importlib.metadata.version(__package__ or "git_copilot_commit")
@@ -1,3 +0,0 @@
1
- import importlib.metadata
2
-
3
- __version__ = importlib.metadata.version(__package__)