claude-code-tools 0.1.8__tar.gz → 0.1.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.

Potentially problematic release.


This version of claude-code-tools might be problematic. Click here for more details.

Files changed (26) hide show
  1. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/Makefile +2 -1
  2. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/PKG-INFO +1 -1
  3. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/claude_code_tools/__init__.py +1 -1
  4. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/pyproject.toml +2 -2
  5. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/uv.lock +1 -1
  6. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/.gitignore +0 -0
  7. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/README.md +0 -0
  8. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/claude_code_tools/dotenv_vault.py +0 -0
  9. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/claude_code_tools/find_claude_session.py +0 -0
  10. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/claude_code_tools/tmux_cli_controller.py +0 -0
  11. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/docs/claude-code-tmux-tutorials.md +0 -0
  12. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/docs/find-claude-session.md +0 -0
  13. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/docs/tmux-cli-instructions.md +0 -0
  14. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/docs/vault-documentation.md +0 -0
  15. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/README.md +0 -0
  16. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/bash_hook.py +0 -0
  17. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/file_size_conditional_hook.py +0 -0
  18. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/git_add_block_hook.py +0 -0
  19. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/git_checkout_safety_hook.py +0 -0
  20. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/grep_block_hook.py +0 -0
  21. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/notification_hook.sh +0 -0
  22. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/posttask_subtask_flag.py +0 -0
  23. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/pretask_subtask_flag.py +0 -0
  24. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/rm_block_hook.py +0 -0
  25. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/hooks/settings.sample.json +0 -0
  26. {claude_code_tools-0.1.8 → claude_code_tools-0.1.9}/scripts/fcs-function.sh +0 -0
@@ -1,4 +1,4 @@
1
- .PHONY: install release patch minor major dev-install help
1
+ .PHONY: install release patch minor major dev-install help publish
2
2
 
3
3
  help:
4
4
  @echo "Available commands:"
@@ -8,6 +8,7 @@ help:
8
8
  @echo " make patch - Bump patch version (0.0.X) and install"
9
9
  @echo " make minor - Bump minor version (0.X.0) and install"
10
10
  @echo " make major - Bump major version (X.0.0) and install"
11
+ @echo " make publish - Bump patch version, build, and publish to PyPI"
11
12
 
12
13
  install:
13
14
  uv tool install --force -e .
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-code-tools
3
- Version: 0.1.8
3
+ Version: 0.1.9
4
4
  Summary: Collection of tools for working with Claude Code
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: click>=8.0.0
@@ -1,3 +1,3 @@
1
1
  """Claude Code Tools - Collection of utilities for Claude Code."""
2
2
 
3
- __version__ = "0.1.8"
3
+ __version__ = "0.1.9"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "claude-code-tools"
3
- version = "0.1.8"
3
+ version = "0.1.9"
4
4
  description = "Collection of tools for working with Claude Code"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -36,7 +36,7 @@ exclude = [
36
36
 
37
37
  [tool.commitizen]
38
38
  name = "cz_conventional_commits"
39
- version = "0.1.8"
39
+ version = "0.1.9"
40
40
  tag_format = "v$version"
41
41
  version_files = [
42
42
  "pyproject.toml:version",
@@ -60,7 +60,7 @@ wheels = [
60
60
 
61
61
  [[package]]
62
62
  name = "claude-code-tools"
63
- version = "0.1.7"
63
+ version = "0.1.8"
64
64
  source = { editable = "." }
65
65
  dependencies = [
66
66
  { name = "click" },