From 9bf5491543b37cd23ddddc314f2fd3315424f3df Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Mon, 25 May 2026 21:46:46 +0200 Subject: [PATCH 1/3] chore(changelog): update for RabbitMQ protocol binding addition in 2.1.0 Signed-off-by: Yurii Serhiichuk --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23c14bbe..d54c8da7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.0] + ### Added -- Added [RabbitMQ](https://github.com/knative-extensions/eventing-rabbitmq/blob/main/cloudevents-protocol-spec/spec.md) - protocol binding for CloudEvents. +- Added [RabbitMQ][rabbit-mq-spec] protocol binding for CloudEvents. ([#284]) + +[rabbit-mq-spec]: https://github.com/knative-extensions/eventing-rabbitmq/blob/main/cloudevents-protocol-spec/spec.md ## [2.0.0] @@ -349,3 +352,4 @@ CloudEvents v2 is a rewrite with ongoing development ([#271]) [#276]: https://github.com/cloudevents/sdk-python/pull/276 [#278]: https://github.com/cloudevents/sdk-python/pull/278 [#279]: https://github.com/cloudevents/sdk-python/pull/279 +[#284]: https://github.com/cloudevents/sdk-python/pull/284 From 8cb80d90dcdcf64376135420ed2fca239e9cc13a Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Mon, 25 May 2026 21:46:57 +0200 Subject: [PATCH 2/3] chore(release): bump version to 2.1.0 Signed-off-by: Yurii Serhiichuk --- src/cloudevents/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloudevents/__init__.py b/src/cloudevents/__init__.py index 81921467..a6099d7a 100644 --- a/src/cloudevents/__init__.py +++ b/src/cloudevents/__init__.py @@ -12,4 +12,4 @@ # License for the specific language governing permissions and limitations # under the License. -__version__ = "2.0.0" +__version__ = "2.1.0" From fd7b8d54a9ceaa75232bd64cc17128a9b10bd3a3 Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Mon, 25 May 2026 21:50:33 +0200 Subject: [PATCH 3/3] chore(ci): upgrade setup-uv action to v8.1.0 in workflows Signed-off-by: Yurii Serhiichuk --- .github/workflows/main.yml | 4 ++-- .github/workflows/pypi-release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 772b7930..274a232e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Install uv - uses: astral-sh/setup-uv@v7 + uses: astral-sh/setup-uv@v8.1.0 with: enable-cache: true cache-dependency-glob: "uv.lock" @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Install uv - uses: astral-sh/setup-uv@v7 + uses: astral-sh/setup-uv@v8.1.0 with: enable-cache: true cache-dependency-glob: "uv.lock" diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 4a414248..d7298db8 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v7 + uses: astral-sh/setup-uv@v8.1.0 - name: Set up Python run: uv python install 3.12 - name: Install the project