fcp-python 0.1.3__tar.gz → 0.1.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.
Files changed (44) hide show
  1. {fcp_python-0.1.3 → fcp_python-0.1.4}/.claude-plugin/plugin.json +1 -1
  2. {fcp_python-0.1.3 → fcp_python-0.1.4}/PKG-INFO +1 -1
  3. {fcp_python-0.1.3 → fcp_python-0.1.4}/pyproject.toml +1 -1
  4. {fcp_python-0.1.3 → fcp_python-0.1.4}/uv.lock +1 -1
  5. {fcp_python-0.1.3 → fcp_python-0.1.4}/.github/workflows/ci.yml +0 -0
  6. {fcp_python-0.1.3 → fcp_python-0.1.4}/.github/workflows/release.yml +0 -0
  7. {fcp_python-0.1.3 → fcp_python-0.1.4}/.mcp.json +0 -0
  8. {fcp_python-0.1.3 → fcp_python-0.1.4}/CLAUDE.md +0 -0
  9. {fcp_python-0.1.3 → fcp_python-0.1.4}/Makefile +0 -0
  10. {fcp_python-0.1.3 → fcp_python-0.1.4}/README.md +0 -0
  11. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/__init__.py +0 -0
  12. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/bridge.py +0 -0
  13. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/__init__.py +0 -0
  14. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/format.py +0 -0
  15. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/model.py +0 -0
  16. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/mutation.py +0 -0
  17. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/query.py +0 -0
  18. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/domain/verbs.py +0 -0
  19. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/__init__.py +0 -0
  20. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/client.py +0 -0
  21. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/lifecycle.py +0 -0
  22. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/transport.py +0 -0
  23. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/types.py +0 -0
  24. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/lsp/workspace_edit.py +0 -0
  25. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/main.py +0 -0
  26. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/resolver/__init__.py +0 -0
  27. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/resolver/index.py +0 -0
  28. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/resolver/pipeline.py +0 -0
  29. {fcp_python-0.1.3 → fcp_python-0.1.4}/src/fcp_python/resolver/selectors.py +0 -0
  30. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/__init__.py +0 -0
  31. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_bridge.py +0 -0
  32. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_client.py +0 -0
  33. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_format.py +0 -0
  34. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_index.py +0 -0
  35. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_lifecycle.py +0 -0
  36. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_model.py +0 -0
  37. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_mutation.py +0 -0
  38. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_pipeline.py +0 -0
  39. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_query.py +0 -0
  40. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_selectors.py +0 -0
  41. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_transport.py +0 -0
  42. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_types.py +0 -0
  43. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_verbs.py +0 -0
  44. {fcp_python-0.1.3 → fcp_python-0.1.4}/tests/test_workspace_edit.py +0 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fcp-python",
3
3
  "description": "Query and refactor Python codebases through intent-level commands",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Scott Meyer"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fcp-python
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Python Code Intelligence FCP — semantic Python code operations for LLMs via pylsp
5
5
  Requires-Python: <3.14,>=3.11
6
6
  Requires-Dist: fastmcp>=3.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "fcp-python"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = "Python Code Intelligence FCP — semantic Python code operations for LLMs via pylsp"
5
5
  requires-python = ">=3.11,<3.14"
6
6
  dependencies = [
@@ -386,7 +386,7 @@ wheels = [
386
386
 
387
387
  [[package]]
388
388
  name = "fcp-python"
389
- version = "0.1.3"
389
+ version = "0.1.4"
390
390
  source = { editable = "." }
391
391
  dependencies = [
392
392
  { name = "fastmcp" },
File without changes
File without changes
File without changes
File without changes
File without changes