From 7c7dffa42184bf14f4caff5b06d09015233c0b6c Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Mon, 25 Sep 2023 11:40:39 +0200 Subject: [PATCH 1/2] Bump version Signed-off-by: Yurii Serhiichuk --- cloudevents/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudevents/__init__.py b/cloudevents/__init__.py index 3b98aa8b..1cabc336 100644 --- a/cloudevents/__init__.py +++ b/cloudevents/__init__.py @@ -12,4 +12,4 @@ # License for the specific language governing permissions and limitations # under the License. -__version__ = "1.9.0" +__version__ = "1.10.0" From a9a7ee7b0fe8374d20ebbcac36e1d0c11efaf11c Mon Sep 17 00:00:00 2001 From: Yurii Serhiichuk Date: Mon, 25 Sep 2023 11:40:55 +0200 Subject: [PATCH 2/2] Update changelog Signed-off-by: Yurii Serhiichuk --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c025b6bf..44e991b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.10.0] — 2023-09-25 +### Added +- Pydantic v2 support. ([#219]) +- Pydantic v2 to v1 compatibility layer. ([#218]) +- Governance docs per main CE discussions. ([#221]) + ## [1.9.0] — 2023-01-04 ### Added - Added typings to the codebase. ([#207]) @@ -179,6 +185,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release +[1.10.0]: https://github.com/cloudevents/sdk-python/compare/1.9.0...1.10.0 [1.9.0]: https://github.com/cloudevents/sdk-python/compare/1.8.0...1.9.0 [1.8.0]: https://github.com/cloudevents/sdk-python/compare/1.7.0...1.8.0 [1.7.1]: https://github.com/cloudevents/sdk-python/compare/1.7.0...1.7.1 @@ -256,3 +263,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#207]: https://github.com/cloudevents/sdk-python/pull/207 [#208]: https://github.com/cloudevents/sdk-python/pull/208 [#209]: https://github.com/cloudevents/sdk-python/pull/209 +[#218]: https://github.com/cloudevents/sdk-python/pull/218 +[#219]: https://github.com/cloudevents/sdk-python/pull/219 +[#221]: https://github.com/cloudevents/sdk-python/pull/221