Skip to content

Commit fa540c7

Browse files
xSAVIKxsasha-tkachev
authored andcommitted
release: v1.4.0 (cloudevents#179)
Signed-off-by: Yurii Serhiichuk <[email protected]>
1 parent 5730982 commit fa540c7

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
10+
## [1.4.0] — 2022-07-14
911
### Added
1012
- Added `.get` accessor for even properties ([#165])
1113
- Added type information for all event member functions ([#173])
1214

15+
### Fixed
16+
- Fixed event `__eq__` operator raising `AttributeError` on non-CloudEvent values ([#172])
17+
1318
### Changed
1419
- Code quality and styling tooling is unified and configs compatibility is ensured ([#167])
1520
- CI configurations updated and added macOS and Windows tests ([#169])
@@ -18,7 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1823
### Removed
1924
- `docs` folder and related unused tooling ([#168])
2025

21-
## [1.3.0] — 2022-09-07
26+
27+
## [1.3.0] — 2022-07-09
2228
### Added
2329
- Python 3.9 support ([#144])
2430
- Python 3.10 support ([#150])
@@ -104,6 +110,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
104110
### Added
105111
- Initial release
106112

113+
[1.4.0]: https://github.com/cloudevents/sdk-python/compare/1.3.0...1.4.0
107114
[1.3.0]: https://github.com/cloudevents/sdk-python/compare/1.2.0...1.3.0
108115
[1.2.0]: https://github.com/cloudevents/sdk-python/compare/1.1.0...1.2.0
109116
[1.1.0]: https://github.com/cloudevents/sdk-python/compare/1.0.1...1.1.0
@@ -156,4 +163,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156163
[#168]: https://github.com/cloudevents/sdk-python/pull/168
157164
[#169]: https://github.com/cloudevents/sdk-python/pull/169
158165
[#170]: https://github.com/cloudevents/sdk-python/pull/170
166+
[#172]: https://github.com/cloudevents/sdk-python/pull/172
159167
[#173]: https://github.com/cloudevents/sdk-python/pull/173

cloudevents/__init__.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,17 @@
1111
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
1212
# License for the specific language governing permissions and limitations
1313
# under the License.
14+
#
15+
# Licensed under the Apache License, Version 2.0 (the "License"); you may
16+
# not use this file except in compliance with the License. You may obtain
17+
# a copy of the License at
18+
#
19+
# http://www.apache.org/licenses/LICENSE-2.0
20+
#
21+
# Unless required by applicable law or agreed to in writing, software
22+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
23+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
24+
# License for the specific language governing permissions and limitations
25+
# under the License.
1426

15-
__version__ = "1.3.0"
27+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)