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 @@ -6,6 +6,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.6.1] - 2026-08-17

### Added

- **Documentation pages now carry Open Graph and Twitter card tags.** A link to
Expand Down Expand Up @@ -869,7 +871,8 @@ The major version marks the scope of what is added, not a migration burden.
- `InterlockDeprecationWarning` (subclasses `UserWarning`, visible by default).
- `py.typed`; strict mypy and pyright; 100% test coverage.

[Unreleased]: https://github.com/bagowix/interlock/compare/v2.6.0...HEAD
[Unreleased]: https://github.com/bagowix/interlock/compare/v2.6.1...HEAD
[2.6.1]: https://github.com/bagowix/interlock/compare/v2.6.0...v2.6.1
[2.6.0]: https://github.com/bagowix/interlock/compare/v2.5.0...v2.6.0
[2.5.0]: https://github.com/bagowix/interlock/compare/v2.4.0...v2.5.0
[2.4.0]: https://github.com/bagowix/interlock/compare/v2.3.0...v2.4.0
Expand Down
2 changes: 1 addition & 1 deletion docs/comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ choice.
| OpenTelemetry metrics | ✅ | — | — | — | — |
| Operator overrides (force-open / disable / shadow mode) | ✅ | — | — | — | — |
| Years of production use | new | ✅ | ✅ | ✅ | ✅ |
| Latest release (as of August 2026) | 2.6.0 · 2026 | 1.4.1 · 2025 | 2.1.3 | 1.2.0 · 2021 | 3.0.1 · 2024 |
| Latest release (as of August 2026) | 2.6.1 · 2026 | 1.4.1 · 2025 | 2.1.3 | 1.2.0 · 2021 | 3.0.1 · 2024 |
| Python | ≥ 3.11 | ≥ 3.9 | ≥ 3.8 | ≥ 3.6 | ≥ 3.9 |

<sub>Compared against pybreaker 1.4.1, circuitbreaker 2.1.3, aiobreaker 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion docs/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ choice.
| OpenTelemetry metrics | ✅ | — | — | — | — |
| Operator overrides (force-open / disable / shadow mode) | ✅ | — | — | — | — |
| Years of production use | new | ✅ | ✅ | ✅ | ✅ |
| Latest release (as of August 2026) | 2.6.0 · 2026 | 1.4.1 · 2025 | 2.1.3 | 1.2.0 · 2021 | 3.0.1 · 2024 |
| Latest release (as of August 2026) | 2.6.1 · 2026 | 1.4.1 · 2025 | 2.1.3 | 1.2.0 · 2021 | 3.0.1 · 2024 |
| Python | ≥ 3.11 | ≥ 3.9 | ≥ 3.8 | ≥ 3.6 | ≥ 3.9 |

<sub>Compared against pybreaker 1.4.1, circuitbreaker 2.1.3, aiobreaker 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion interlock/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__all__ = ('VERSION',)

VERSION = '2.6.0'
VERSION = '2.6.1'

Check warning on line 10 in interlock/version.py

View workflow job for this annotation

GitHub Actions / griffe

VERSION

Attribute value was changed: `'2.6.0'` -> `'2.6.1'`
"""The installed version of interlock.

Guaranteed to comply with PEP 440 version specifiers.
Expand Down
Loading