diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff861c..ab1d20d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.2] — 2026-05-14 + ### Changed - **`aicertify demo` rewritten for the canonical rich-UX flow.** The previous demo runner produced plain `print()` output; it now mirrors [`examples/quickstart.py`](examples/quickstart.py) exactly — uses the high-level `application.create()` + `app.evaluate()` API and wraps each step in `print_banner`, `spinner`, `MessageGroup`, and `success` markers from `aicertify.utils.logging_config`. Visually identical to the canonical SDK experience. diff --git a/aicertify/__init__.py b/aicertify/__init__.py index 52652f3..b693986 100644 --- a/aicertify/__init__.py +++ b/aicertify/__init__.py @@ -6,7 +6,7 @@ """ # Version information -__version__ = "0.7.1" +__version__ = "0.7.2" # Direct imports for developer convenience try: diff --git a/pyproject.toml b/pyproject.toml index 543b9e5..83c3035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "aicertify" -version = "0.7.1" +version = "0.7.2" description = "Compliance-as-code for AI systems. Audit your AI against the EU AI Act, NIST AI RMF, and 13+ regulatory frameworks using Open Policy Agent (OPA) — and produce audit-ready PDF, Markdown, JSON, or HTML reports." authors = [ {name = "Kapil Madan", email = "kapil.madan@gmail.com"},