Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
4 changes: 2 additions & 2 deletions docs/feedback-checklist.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/diffrat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Diffrat — local CLI for diff and PR review assistance."""

__version__ = "1.1.1"
__version__ = "1.1.2"
Loading