foothold 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 (53) hide show
  1. {foothold-0.1.3 → foothold-0.1.4}/CHANGELOG.md +9 -0
  2. {foothold-0.1.3 → foothold-0.1.4}/PKG-INFO +1 -1
  3. {foothold-0.1.3 → foothold-0.1.4}/action.yml +1 -1
  4. {foothold-0.1.3 → foothold-0.1.4}/pyproject.toml +1 -1
  5. {foothold-0.1.3 → foothold-0.1.4}/.foothold.toml +0 -0
  6. {foothold-0.1.3 → foothold-0.1.4}/.github/ISSUE_TEMPLATE/bug.yml +0 -0
  7. {foothold-0.1.3 → foothold-0.1.4}/.github/ISSUE_TEMPLATE/ranking.yml +0 -0
  8. {foothold-0.1.3 → foothold-0.1.4}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
  9. {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/ci.yml +0 -0
  10. {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/reading-path.yml +0 -0
  11. {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/release.yml +0 -0
  12. {foothold-0.1.3 → foothold-0.1.4}/.gitignore +0 -0
  13. {foothold-0.1.3 → foothold-0.1.4}/.pre-commit-config.yaml +0 -0
  14. {foothold-0.1.3 → foothold-0.1.4}/ARCHITECTURE.md +0 -0
  15. {foothold-0.1.3 → foothold-0.1.4}/CODE_OF_CONDUCT.md +0 -0
  16. {foothold-0.1.3 → foothold-0.1.4}/CONTRIBUTING.md +0 -0
  17. {foothold-0.1.3 → foothold-0.1.4}/LICENSE +0 -0
  18. {foothold-0.1.3 → foothold-0.1.4}/README.md +0 -0
  19. {foothold-0.1.3 → foothold-0.1.4}/SECURITY.md +0 -0
  20. {foothold-0.1.3 → foothold-0.1.4}/docs/cost-model.md +0 -0
  21. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/__init__.py +0 -0
  22. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/analyze.py +0 -0
  23. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/cli.py +0 -0
  24. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/__init__.py +0 -0
  25. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/git_history.py +0 -0
  26. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/markers.py +0 -0
  27. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/python_ast.py +0 -0
  28. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/config.py +0 -0
  29. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/__init__.py +0 -0
  30. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/build.py +0 -0
  31. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/rank.py +0 -0
  32. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/issues.py +0 -0
  33. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/models.py +0 -0
  34. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/narrator/__init__.py +0 -0
  35. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/narrator/client.py +0 -0
  36. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/__init__.py +0 -0
  37. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/markdown.py +0 -0
  38. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/mermaid.py +0 -0
  39. {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/terminal.py +0 -0
  40. {foothold-0.1.3 → foothold-0.1.4}/tests/conftest.py +0 -0
  41. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/main.py +0 -0
  42. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/__init__.py +0 -0
  43. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/api.py +0 -0
  44. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/core.py +0 -0
  45. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/util/__init__.py +0 -0
  46. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/util/helpers.py +0 -0
  47. {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/tests/test_core.py +0 -0
  48. {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_cli.py +0 -0
  49. {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_git_history.py +0 -0
  50. {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_graph.py +0 -0
  51. {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_rank.py +0 -0
  52. {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_render_and_issues.py +0 -0
  53. {foothold-0.1.3 → foothold-0.1.4}/uv.lock +0 -0
@@ -6,6 +6,15 @@ All notable changes are documented here. Format follows
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.1.4]
10
+
11
+ ### Changed
12
+
13
+ - The action's Marketplace name is now "Foothold reading path". GitHub requires that
14
+ name to be unique across every action, user and organisation, and the organisation
15
+ `github.com/FootHold` already holds "Foothold". Nothing else changes: the package is
16
+ still `foothold` on PyPI and the action is still used as `serdairy/foothold@vX.Y.Z`.
17
+
9
18
  ## [0.1.3]
10
19
 
11
20
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: foothold
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: Turn an unfamiliar repository into a reading path
5
5
  Project-URL: Homepage, https://github.com/serdairy/foothold
6
6
  Project-URL: Issues, https://github.com/serdairy/foothold/issues
@@ -1,4 +1,4 @@
1
- name: Foothold
1
+ name: Foothold reading path
2
2
  description: Rank the files that hold a Python repository together, and put the reading path in the job summary.
3
3
  author: Sergei Petrov
4
4
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "foothold"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = "Turn an unfamiliar repository into a reading path"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes