Skip to content

Commit

Permalink
release: v1.5.0 (#187)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
xSAVIKx authored Aug 7, 2022
1 parent 785bfe7 commit 47818a9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]


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

[1.5.0]: https://github.com/cloudevents/sdk-python/compare/1.4.0...1.5.0
[1.4.0]: https://github.com/cloudevents/sdk-python/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/cloudevents/sdk-python/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/cloudevents/sdk-python/compare/1.1.0...1.2.0
Expand Down Expand Up @@ -173,3 +181,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#173]: https://github.com/cloudevents/sdk-python/pull/173
[#180]: https://github.com/cloudevents/sdk-python/pull/180
[#184]: https://github.com/cloudevents/sdk-python/pull/184
[#186]: https://github.com/cloudevents/sdk-python/pull/186
14 changes: 13 additions & 1 deletion cloudevents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,17 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

__version__ = "1.4.0"
__version__ = "1.5.0"
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ flake8-strict
pytest
pytest-cov
# web app tests
sanic<=20.12.6; python_version <= '3.6'
sanic<=20.12.7; python_version <= '3.6'
sanic; python_version > '3.6'
sanic-testing; python_version > '3.6'
aiohttp
Expand Down

0 comments on commit 47818a9

Please sign in to comment.