hotfix: Hotfix Pydantic dependency constraints. (#204)
* hotfix: Hotfix Pydantic dependency constraints. docs: Add mention of the constraints fix Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> chore: bump version Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> fix: PyPi constraints for Pydantic Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> ci: add ability to release from tag branches. Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * docs: add missing links Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> * docs: fix release 1.6.3 link Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
This commit is contained in:
parent
81f07b6d9f
commit
119264cdfe
|
@ -5,6 +5,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- 'tag/v**'
|
||||
|
||||
jobs:
|
||||
build_dist:
|
||||
|
|
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -5,6 +5,11 @@ 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.7.1] — 2022-11-21
|
||||
### Fixed
|
||||
- Fixed Pydantic extras dependency constraint (backport of v1.6.3, [#204])
|
||||
|
||||
### Changed
|
||||
- Refined build and publishing process. Added SDist to the released package ([#202])
|
||||
|
||||
|
@ -13,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Added [Kafka](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/bindings/kafka-protocol-binding.md)
|
||||
support ([#197], thanks [David Martines](https://github.com/davidwmartines))
|
||||
|
||||
## [1.6.3] — 2022-11-21
|
||||
### Fixed
|
||||
- Fixed Pydantic extras dependency constraint ([#204])
|
||||
|
||||
## [1.6.2] — 2022-10-18
|
||||
### Added
|
||||
- Added `get_attributes` API to the `CloudEvent` API. The method returns a read-only
|
||||
|
@ -159,7 +168,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Added
|
||||
- Initial release
|
||||
|
||||
[1.7.1]: https://github.com/cloudevents/sdk-python/compare/1.7.0...1.7.1
|
||||
[1.7.0]: https://github.com/cloudevents/sdk-python/compare/1.6.0...1.7.0
|
||||
[1.6.3]: https://github.com/cloudevents/sdk-python/compare/1.6.2...1.6.3
|
||||
[1.6.2]: https://github.com/cloudevents/sdk-python/compare/1.6.1...1.6.2
|
||||
[1.6.1]: https://github.com/cloudevents/sdk-python/compare/1.6.0...1.6.1
|
||||
[1.6.0]: https://github.com/cloudevents/sdk-python/compare/1.5.0...1.6.0
|
||||
|
@ -228,3 +239,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
[#195]: https://github.com/cloudevents/sdk-python/pull/195
|
||||
[#197]: https://github.com/cloudevents/sdk-python/pull/197
|
||||
[#202]: https://github.com/cloudevents/sdk-python/pull/202
|
||||
[#204]: https://github.com/cloudevents/sdk-python/pull/204
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
__version__ = "1.7.0"
|
||||
__version__ = "1.7.1"
|
||||
|
|
4
setup.py
4
setup.py
|
@ -71,8 +71,8 @@ if __name__ == "__main__":
|
|||
install_requires=["deprecation>=2.0,<3.0"],
|
||||
extras_require={
|
||||
"pydantic": [
|
||||
"pydantic>=1.0.0<1.9.0; python_version <= '3.6'",
|
||||
"pydantic>=1.0.0<2.0; python_version > '3.6'",
|
||||
"pydantic>=1.0.0,<1.9.0;python_version<'3.7'",
|
||||
"pydantic>=1.0.0,<2.0;python_version>='3.7'",
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue