Skip to content

Commit 47818a9

Browse files
authored
release: v1.5.0 (cloudevents#187)
* chore: bump version. Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * docs: Update the Changelog. Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * deps: fix `sanic` vulnerability. Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
1 parent 785bfe7 commit 47818a9

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
10+
## [1.5.0] — 2022-08-06
11+
### Added
12+
- A new `CloudEvent` abstract class is available in the `cloudevents.abstract.event`
13+
module. The new abstraction simplifies creation of custom framework-specific
14+
implementations of `CloudEvents` wrappers ([#186])
815
### Fixed
916
- Malformed unicode buffer encoded in `base_64` json field no-longer fail CloudEvent
1017
class construction ([#184])
@@ -116,6 +123,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
116123
### Added
117124
- Initial release
118125

126+
[1.5.0]: https://github.com/cloudevents/sdk-python/compare/1.4.0...1.5.0
119127
[1.4.0]: https://github.com/cloudevents/sdk-python/compare/1.3.0...1.4.0
120128
[1.3.0]: https://github.com/cloudevents/sdk-python/compare/1.2.0...1.3.0
121129
[1.2.0]: https://github.com/cloudevents/sdk-python/compare/1.1.0...1.2.0
@@ -173,3 +181,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
173181
[#173]: https://github.com/cloudevents/sdk-python/pull/173
174182
[#180]: https://github.com/cloudevents/sdk-python/pull/180
175183
[#184]: https://github.com/cloudevents/sdk-python/pull/184
184+
[#186]: https://github.com/cloudevents/sdk-python/pull/186

cloudevents/__init__.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,17 @@
2323
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
2424
# License for the specific language governing permissions and limitations
2525
# under the License.
26+
#
27+
# Licensed under the Apache License, Version 2.0 (the "License"); you may
28+
# not use this file except in compliance with the License. You may obtain
29+
# a copy of the License at
30+
#
31+
# http://www.apache.org/licenses/LICENSE-2.0
32+
#
33+
# Unless required by applicable law or agreed to in writing, software
34+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
35+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
36+
# License for the specific language governing permissions and limitations
37+
# under the License.
2638

27-
__version__ = "1.4.0"
39+
__version__ = "1.5.0"

requirements/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ flake8-strict
66
pytest
77
pytest-cov
88
# web app tests
9-
sanic<=20.12.6; python_version <= '3.6'
9+
sanic<=20.12.7; python_version <= '3.6'
1010
sanic; python_version > '3.6'
1111
sanic-testing; python_version > '3.6'
1212
aiohttp

0 commit comments

Comments
 (0)