becwright 0.2.1__tar.gz → 0.2.2__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 (43) hide show
  1. {becwright-0.2.1/src/becwright.egg-info → becwright-0.2.2}/PKG-INFO +1 -1
  2. {becwright-0.2.1 → becwright-0.2.2}/pyproject.toml +1 -1
  3. becwright-0.2.2/src/becwright/__init__.py +1 -0
  4. {becwright-0.2.1 → becwright-0.2.2/src/becwright.egg-info}/PKG-INFO +1 -1
  5. becwright-0.2.1/src/becwright/__init__.py +0 -1
  6. {becwright-0.2.1 → becwright-0.2.2}/LICENSE +0 -0
  7. {becwright-0.2.1 → becwright-0.2.2}/README.md +0 -0
  8. {becwright-0.2.1 → becwright-0.2.2}/setup.cfg +0 -0
  9. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/__main__.py +0 -0
  10. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/bundle.py +0 -0
  11. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/__init__.py +0 -0
  12. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/_ignore.py +0 -0
  13. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/dangerous_eval.py +0 -0
  14. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/debug_remnants.py +0 -0
  15. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/forbid.py +0 -0
  16. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/hardcoded_secrets.py +0 -0
  17. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/no_token_in_logs.py +0 -0
  18. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/redundant_comments.py +0 -0
  19. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/checks/wildcard_imports.py +0 -0
  20. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/cli.py +0 -0
  21. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/engine.py +0 -0
  22. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/git.py +0 -0
  23. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/mcp_server.py +0 -0
  24. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/report.py +0 -0
  25. {becwright-0.2.1 → becwright-0.2.2}/src/becwright/rules.py +0 -0
  26. {becwright-0.2.1 → becwright-0.2.2}/src/becwright.egg-info/SOURCES.txt +0 -0
  27. {becwright-0.2.1 → becwright-0.2.2}/src/becwright.egg-info/dependency_links.txt +0 -0
  28. {becwright-0.2.1 → becwright-0.2.2}/src/becwright.egg-info/entry_points.txt +0 -0
  29. {becwright-0.2.1 → becwright-0.2.2}/src/becwright.egg-info/requires.txt +0 -0
  30. {becwright-0.2.1 → becwright-0.2.2}/src/becwright.egg-info/top_level.txt +0 -0
  31. {becwright-0.2.1 → becwright-0.2.2}/tests/test_bundle.py +0 -0
  32. {becwright-0.2.1 → becwright-0.2.2}/tests/test_checks.py +0 -0
  33. {becwright-0.2.1 → becwright-0.2.2}/tests/test_cli_and_git.py +0 -0
  34. {becwright-0.2.1 → becwright-0.2.2}/tests/test_engine.py +0 -0
  35. {becwright-0.2.1 → becwright-0.2.2}/tests/test_engine_integration.py +0 -0
  36. {becwright-0.2.1 → becwright-0.2.2}/tests/test_forbid.py +0 -0
  37. {becwright-0.2.1 → becwright-0.2.2}/tests/test_ignore.py +0 -0
  38. {becwright-0.2.1 → becwright-0.2.2}/tests/test_init.py +0 -0
  39. {becwright-0.2.1 → becwright-0.2.2}/tests/test_list.py +0 -0
  40. {becwright-0.2.1 → becwright-0.2.2}/tests/test_mcp.py +0 -0
  41. {becwright-0.2.1 → becwright-0.2.2}/tests/test_more_checks.py +0 -0
  42. {becwright-0.2.1 → becwright-0.2.2}/tests/test_redundant_comments.py +0 -0
  43. {becwright-0.2.1 → becwright-0.2.2}/tests/test_report_and_json.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: becwright
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Deterministically enforces constraints (BECs) on your code, blocking commits that violate them.
5
5
  Author: Alonso David De Leon Rodarte
6
6
  License: MIT
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "becwright"
9
- version = "0.2.1"
9
+ version = "0.2.2"
10
10
  description = "Deterministically enforces constraints (BECs) on your code, blocking commits that violate them."
11
11
  readme = "README.md"
12
12
  requires-python = ">=3.12"
@@ -0,0 +1 @@
1
+ __version__ = "0.2.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: becwright
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Deterministically enforces constraints (BECs) on your code, blocking commits that violate them.
5
5
  Author: Alonso David De Leon Rodarte
6
6
  License: MIT
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes