├── .github └── workflows │ ├── build.yaml │ ├── check.yaml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── pyproject.toml ├── scripts └── version ├── src └── rooster │ ├── __init__.py │ ├── __main__.py │ ├── _cache.py │ ├── _changelog.py │ ├── _cli.py │ ├── _config.py │ ├── _git.py │ ├── _github.py │ ├── _http.py │ ├── _pyproject.py │ ├── _testing.py │ └── _versions.py ├── tests ├── __init__.py └── cli │ └── test_changelog.py └── uv.lock /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/scripts/version -------------------------------------------------------------------------------- /src/rooster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/__init__.py -------------------------------------------------------------------------------- /src/rooster/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/__main__.py -------------------------------------------------------------------------------- /src/rooster/_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_cache.py -------------------------------------------------------------------------------- /src/rooster/_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_changelog.py -------------------------------------------------------------------------------- /src/rooster/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_cli.py -------------------------------------------------------------------------------- /src/rooster/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_config.py -------------------------------------------------------------------------------- /src/rooster/_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_git.py -------------------------------------------------------------------------------- /src/rooster/_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_github.py -------------------------------------------------------------------------------- /src/rooster/_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_http.py -------------------------------------------------------------------------------- /src/rooster/_pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_pyproject.py -------------------------------------------------------------------------------- /src/rooster/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_testing.py -------------------------------------------------------------------------------- /src/rooster/_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/src/rooster/_versions.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cli/test_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/tests/cli/test_changelog.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zanieb/rooster/HEAD/uv.lock --------------------------------------------------------------------------------