devcommit 0.1.4.8__tar.gz → 0.1.4.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devcommit
3
- Version: 0.1.4.8
3
+ Version: 0.1.4.9
4
4
  Summary: AI-powered git commit message generator
5
5
  License: GNU GENERAL PUBLIC LICENSE
6
6
  Version 3, 29 June 2007
@@ -261,7 +261,7 @@ def stage_changes(console):
261
261
  spinner="dots",
262
262
  spinner_style="cyan"
263
263
  ):
264
- subprocess.run(["git", "add", "--update"], check=True)
264
+ subprocess.run(["git", "add", "--all"], check=True)
265
265
 
266
266
 
267
267
  def detect_staged_files(console, exclude_files):
@@ -56,13 +56,8 @@ def get_default_excludes() -> List[str]:
56
56
  except:
57
57
  pass
58
58
 
59
- # Default exclusions
60
- return [
61
- 'package-lock.json',
62
- 'pnpm-lock.yaml',
63
- 'yarn.lock',
64
- '*.lock'
65
- ]
59
+ # No default exclusions; rely entirely on user configuration.
60
+ return []
66
61
 
67
62
 
68
63
  # Get default files to exclude (can be overridden via config)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "devcommit"
3
- version = "0.1.4.8"
3
+ version = "0.1.4.9"
4
4
  description = "AI-powered git commit message generator"
5
5
  readme = "README.md"
6
6
  license = {file = "COPYING"}
File without changes
File without changes