release: v1.5.0 (#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>
This commit is contained in:
parent
785bfe731b
commit
47818a980d
|
@ -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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
### Fixed
|
||||||
- Malformed unicode buffer encoded in `base_64` json field no-longer fail CloudEvent
|
- Malformed unicode buffer encoded in `base_64` json field no-longer fail CloudEvent
|
||||||
class construction ([#184])
|
class construction ([#184])
|
||||||
|
@ -116,6 +123,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Added
|
### Added
|
||||||
- Initial release
|
- 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.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.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
|
[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
|
||||||
[#173]: https://github.com/cloudevents/sdk-python/pull/173
|
[#173]: https://github.com/cloudevents/sdk-python/pull/173
|
||||||
[#180]: https://github.com/cloudevents/sdk-python/pull/180
|
[#180]: https://github.com/cloudevents/sdk-python/pull/180
|
||||||
[#184]: https://github.com/cloudevents/sdk-python/pull/184
|
[#184]: https://github.com/cloudevents/sdk-python/pull/184
|
||||||
|
[#186]: https://github.com/cloudevents/sdk-python/pull/186
|
||||||
|
|
|
@ -23,5 +23,17 @@
|
||||||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# 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"
|
||||||
|
|
|
@ -6,7 +6,7 @@ flake8-strict
|
||||||
pytest
|
pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
# web app tests
|
# 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; python_version > '3.6'
|
||||||
sanic-testing; python_version > '3.6'
|
sanic-testing; python_version > '3.6'
|
||||||
aiohttp
|
aiohttp
|
||||||
|
|
Loading…
Reference in New Issue