Skip to content

Commit e3d4428

Browse files
committed
Bump version to 1.6.0 and add changelog release section
1 parent 69178ff commit e3d4428

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ The envelope wire format is versioned separately by `meta.schema_version`
99

1010
## [Unreleased]
1111

12+
## [1.6.0] - 2026-06-14
13+
1214
### Added
1315
- **Redis/Laravel reservation parity** — the Redis transport can now consume a
1416
**shared** Laravel BabelQueue Redis queue using Laravel's reserved-set / reliable-queue
@@ -197,7 +199,8 @@ reference at [babelqueue.com](https://babelqueue.com).
197199
- Pre-1.0: the public API may change before the `1.0.0` tag.
198200
- The core has **zero runtime dependencies** (standard library only); Python `>=3.9`.
199201

200-
[Unreleased]: https://github.com/BabelQueue/babelqueue-python/compare/v1.2.0...HEAD
202+
[Unreleased]: https://github.com/BabelQueue/babelqueue-python/compare/v1.6.0...HEAD
203+
[1.6.0]: https://github.com/BabelQueue/babelqueue-python/compare/v1.5.0...v1.6.0
201204
[1.2.0]: https://github.com/BabelQueue/babelqueue-python/compare/v1.1.0...v1.2.0
202205
[1.1.0]: https://github.com/BabelQueue/babelqueue-python/compare/v1.0.0...v1.1.0
203206
[1.0.0]: https://github.com/BabelQueue/babelqueue-python/compare/v0.5.0...v1.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "babelqueue"
7-
version = "1.5.0"
7+
version = "1.6.0"
88
description = "Polyglot Queues, Simplified — the Python core: the canonical BabelQueue wire-envelope codec, contracts and dead-letter helpers."
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/babelqueue/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .routing import UnknownUrnStrategy
2020
from .transport import InMemoryTransport, ReceivedMessage, Transport
2121

22-
__version__ = "1.2.0"
22+
__version__ = "1.6.0"
2323

2424
__all__ = [
2525
"BabelQueue",

0 commit comments

Comments
 (0)