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.
- {foothold-0.1.3 → foothold-0.1.4}/CHANGELOG.md +9 -0
- {foothold-0.1.3 → foothold-0.1.4}/PKG-INFO +1 -1
- {foothold-0.1.3 → foothold-0.1.4}/action.yml +1 -1
- {foothold-0.1.3 → foothold-0.1.4}/pyproject.toml +1 -1
- {foothold-0.1.3 → foothold-0.1.4}/.foothold.toml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/ISSUE_TEMPLATE/bug.yml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/ISSUE_TEMPLATE/ranking.yml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/ci.yml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/reading-path.yml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.github/workflows/release.yml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.gitignore +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/.pre-commit-config.yaml +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/ARCHITECTURE.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/CODE_OF_CONDUCT.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/CONTRIBUTING.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/LICENSE +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/README.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/SECURITY.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/docs/cost-model.md +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/analyze.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/cli.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/git_history.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/markers.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/collectors/python_ast.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/config.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/build.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/graph/rank.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/issues.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/models.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/narrator/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/narrator/client.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/markdown.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/mermaid.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/src/foothold/render/terminal.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/conftest.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/main.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/api.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/core.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/util/__init__.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/pkg/util/helpers.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/fixtures/minirepo/tests/test_core.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_cli.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_git_history.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_graph.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_rank.py +0 -0
- {foothold-0.1.3 → foothold-0.1.4}/tests/unit/test_render_and_issues.py +0 -0
- {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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|