From a72221d43df65a01cd4c7435658964b05797a8d5 Mon Sep 17 00:00:00 2001 From: Szymon Iwacz Date: Mon, 10 Aug 2026 12:00:53 +0200 Subject: [PATCH] Release 1.1.2 --- CHANGELOG.md | 5 ++++- README.md | 2 +- docs/feedback-checklist.md | 4 ++-- pyproject.toml | 2 +- src/diffrat/__init__.py | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 479d624..1f581ee 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] +## [1.1.2] - 2026-08-10 + ### Fixed - `--check` bandit false positives on Diffrat itself (`subprocess` import/run in @@ -124,7 +126,8 @@ project name, CLI command, and import package match (`diffrat`). PyPI held a `.diffrat.toml`, and `DIFFRAT_LLM_*` (old `NUMBAT_*` / `[tool.numbat]` no longer read) -[Unreleased]: https://github.com/szymoniwacz/diffrat/compare/v1.1.1...HEAD +[Unreleased]: https://github.com/szymoniwacz/diffrat/compare/v1.1.2...HEAD +[1.1.2]: https://github.com/szymoniwacz/diffrat/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/szymoniwacz/diffrat/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/szymoniwacz/diffrat/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/szymoniwacz/diffrat/releases/tag/v1.0.0 diff --git a/README.md b/README.md index 5ff0eb9..cf1b826 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ is empty while `changes.limits` remains. `--brief` works with `--staged`, ## Status -**1.1.1** is the current release on PyPI as +**1.1.2** is the current release on PyPI as [`diffrat`](https://pypi.org/project/diffrat/) (formerly developed as Numbat; see D-008). **1.0.0** was the first product release: diff --git a/docs/feedback-checklist.md b/docs/feedback-checklist.md index 01a80e1..5aad4bb 100644 --- a/docs/feedback-checklist.md +++ b/docs/feedback-checklist.md @@ -1,4 +1,4 @@ -# Feedback checklist (1.1.1) +# Feedback checklist (1.1.2) Short session for external testers and dogfood. Goal: feedback on the **CLI product**, not on private AI workflow tooling. @@ -14,7 +14,7 @@ pip install diffrat diffrat --version ``` -Expect `diffrat 1.1.1` (or newer). +Expect `diffrat 1.1.2` (or newer). From source: diff --git a/pyproject.toml b/pyproject.toml index ce161ea..0d605e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "diffrat" -version = "1.1.1" +version = "1.1.2" description = "Local CLI for diff and PR review assistance" readme = "README.md" requires-python = ">=3.11" diff --git a/src/diffrat/__init__.py b/src/diffrat/__init__.py index d6fe9f7..6c96a4f 100644 --- a/src/diffrat/__init__.py +++ b/src/diffrat/__init__.py @@ -1,3 +1,3 @@ """Diffrat — local CLI for diff and PR review assistance.""" -__version__ = "1.1.1" +__version__ = "1.1.2"