Skip to content

Commit 6352dc4

Browse files
authored
Release v2.1.0 - Rabbit MQ support (#292)
* chore(changelog): update for RabbitMQ protocol binding addition in 2.1.0 Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * chore(release): bump version to 2.1.0 Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * chore(ci): upgrade setup-uv action to v8.1.0 in workflows Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> --------- Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
1 parent e5df229 commit 6352dc4

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v6
1010
- name: Install uv
11-
uses: astral-sh/setup-uv@v7
11+
uses: astral-sh/setup-uv@v8.1.0
1212
with:
1313
enable-cache: true
1414
cache-dependency-glob: "uv.lock"
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v6
3030
- name: Install uv
31-
uses: astral-sh/setup-uv@v7
31+
uses: astral-sh/setup-uv@v8.1.0
3232
with:
3333
enable-cache: true
3434
cache-dependency-glob: "uv.lock"

.github/workflows/pypi-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818
- name: Install uv
19-
uses: astral-sh/setup-uv@v7
19+
uses: astral-sh/setup-uv@v8.1.0
2020
- name: Set up Python
2121
run: uv python install 3.12
2222
- name: Install the project

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.1.0]
10+
911
### Added
1012

11-
- Added [RabbitMQ](https://github.com/knative-extensions/eventing-rabbitmq/blob/main/cloudevents-protocol-spec/spec.md)
12-
protocol binding for CloudEvents.
13+
- Added [RabbitMQ][rabbit-mq-spec] protocol binding for CloudEvents. ([#284])
14+
15+
[rabbit-mq-spec]: https://github.com/knative-extensions/eventing-rabbitmq/blob/main/cloudevents-protocol-spec/spec.md
1316

1417
## [2.0.0]
1518

@@ -349,3 +352,4 @@ CloudEvents v2 is a rewrite with ongoing development ([#271])
349352
[#276]: https://github.com/cloudevents/sdk-python/pull/276
350353
[#278]: https://github.com/cloudevents/sdk-python/pull/278
351354
[#279]: https://github.com/cloudevents/sdk-python/pull/279
355+
[#284]: https://github.com/cloudevents/sdk-python/pull/284

src/cloudevents/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
1414

15-
__version__ = "2.0.0"
15+
__version__ = "2.1.0"

0 commit comments

Comments
 (0)