From aa6ba1da4a09443831a655854d7325bcbc66997b Mon Sep 17 00:00:00 2001 From: "kapil.madan" <3740365+kmadan@users.noreply.github.com> Date: Thu, 14 May 2026 20:54:22 +0530 Subject: [PATCH] release: AICertify v0.7.2 Cuts a release tag for the demo rich-UX rewrite and supporting fixes shipped since v0.7.1: - `aicertify demo` rewritten around the canonical high-level API + `print_banner` / spinner / MessageGroup / success markers - CLI default verbosity dropped to WARNING (was INFO); `--verbose` opts in to INFO + `aicertify`-namespace DEBUG - `policy_loader` no longer warns on `helper_functions/` shared rego - `docs/demo.cast` + `docs/demo.gif` (asciinema recording embedded in the README so visitors see the rich UX before installing) See CHANGELOG.md for the full 0.7.2 entry. --- CHANGELOG.md | 2 ++ aicertify/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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"},