diff --git a/CHANGELOG.md b/CHANGELOG.md index 25d55f9..91b8bc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ schemas and the `paramify` CLI — not the internal code. ## [Unreleased] +## [0.3.1-beta] - 2026-07-28 + ### Changed - Run manifests are no longer gitignored, and the repo no longer tracks a file at @@ -135,7 +137,8 @@ change before 1.0 (see [`docs/versioning.md`](docs/versioning.md)). - TUI restyled — border titles, status pills, denser controls, and hatched empty states. -[Unreleased]: https://github.com/paramify/paramify-fetchers/compare/v0.3.0-beta...HEAD +[Unreleased]: https://github.com/paramify/paramify-fetchers/compare/v0.3.1-beta...HEAD +[0.3.1-beta]: https://github.com/paramify/paramify-fetchers/compare/v0.3.0-beta...v0.3.1-beta [0.3.0-beta]: https://github.com/paramify/paramify-fetchers/compare/v0.2.1-beta...v0.3.0-beta [0.2.1-beta]: https://github.com/paramify/paramify-fetchers/compare/v0.2.0-beta...v0.2.1-beta [0.2.0-beta]: https://github.com/paramify/paramify-fetchers/releases/tag/v0.2.0-beta diff --git a/README.md b/README.md index 81f6148..4764f87 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![CI](https://github.com/paramify/paramify-fetchers/actions/workflows/ci.yml/badge.svg)](https://github.com/paramify/paramify-fetchers/actions/workflows/ci.yml) [![License: GPLv3](https://img.shields.io/badge/License-GPLv3-1467ff.svg)](LICENSE) [![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-1467ff.svg)](pyproject.toml) -[![Version](https://img.shields.io/badge/version-0.3.0--beta-1467ff.svg)](CHANGELOG.md) +[![Version](https://img.shields.io/badge/version-0.3.1--beta-1467ff.svg)](CHANGELOG.md) [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/paramify/paramify-fetchers) Fetchers are small scripts that collect compliance evidence from your infrastructure and write it to disk as JSON. A separate uploader stage pushes that evidence to Paramify. This repo contains the fetchers, the runner that executes them, and the uploader — the fetchers themselves never talk to Paramify directly. diff --git a/pyproject.toml b/pyproject.toml index 1a4cbf0..c176cd7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "paramify-fetchers" -version = "0.3.0" +version = "0.3.1" description = "Paramify evidence fetcher framework — discover, build, run, and inspect evidence fetchers." readme = "README.md" requires-python = ">=3.10"