Skip to content

Commit 1290f84

Browse files
committed
chore(release): prepare v1.2.0 — Azure Service Bus transport (sb://)
1 parent a21620d commit 1290f84

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
The envelope wire format is versioned separately by `meta.schema_version`
88
(currently **1**) — see the contract at [babelqueue.com](https://babelqueue.com).
99

10-
## [Unreleased]
10+
## [1.2.0] - 2026-06-13
1111

1212
### Added
1313
- **Azure Service Bus transport** (`babelqueue[azureservicebus]`, `azure-servicebus`) —
@@ -115,7 +115,8 @@ reference at [babelqueue.com](https://babelqueue.com).
115115
- Pre-1.0: the public API may change before the `1.0.0` tag.
116116
- The core has **zero runtime dependencies** (standard library only); Python `>=3.9`.
117117

118-
[Unreleased]: https://github.com/BabelQueue/babelqueue-python/compare/v1.1.0...HEAD
118+
[Unreleased]: https://github.com/BabelQueue/babelqueue-python/compare/v1.2.0...HEAD
119+
[1.2.0]: https://github.com/BabelQueue/babelqueue-python/compare/v1.1.0...v1.2.0
119120
[1.1.0]: https://github.com/BabelQueue/babelqueue-python/compare/v1.0.0...v1.1.0
120121
[1.0.0]: https://github.com/BabelQueue/babelqueue-python/compare/v0.5.0...v1.0.0
121122
[0.5.0]: https://github.com/BabelQueue/babelqueue-python/compare/v0.4.0...v0.5.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.1.0"
7+
version = "1.2.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.1.0"
22+
__version__ = "1.2.0"
2323

2424
__all__ = [
2525
"BabelQueue",

0 commit comments

Comments
 (0)