diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6e0e77b..dba10b1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.25" + ".": "0.0.26" } diff --git a/CHANGELOG.md b/CHANGELOG.md index eaea738..231b85e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.0.26](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.25...v0.0.26) (2024-05-06) + + +### Bug Fixes + +* **deps:** Update dependency black to v24.4.2 ([#76](https://github.com/cloudquery/plugin-pb-python/issues/76)) ([a9edc09](https://github.com/cloudquery/plugin-pb-python/commit/a9edc097ee450f854c60dd3d9089176596dfe0f7)) +* **deps:** Update dependency grpcio to v1.63.0 ([#77](https://github.com/cloudquery/plugin-pb-python/issues/77)) ([7f54eca](https://github.com/cloudquery/plugin-pb-python/commit/7f54eca6ab82d8f391f936267c174dc365721ca5)) +* **deps:** Update dependency grpcio-tools to v1.63.0 ([#79](https://github.com/cloudquery/plugin-pb-python/issues/79)) ([c31fceb](https://github.com/cloudquery/plugin-pb-python/commit/c31fceb2130e3a3389d409374dd07718159869ea)) +* **deps:** Update dependency pytest to v8.2.0 ([#80](https://github.com/cloudquery/plugin-pb-python/issues/80)) ([f598b84](https://github.com/cloudquery/plugin-pb-python/commit/f598b846af21d685def553b9ebdd3a457d057b82)) + ## [0.0.25](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.24...v0.0.25) (2024-04-01) diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..d02d433 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,6 @@ +* @cloudquery/cloudquery-framework + +requirements.txt +setup.py +.release-please-manifest.json +CHANGELOG.md diff --git a/requirements.txt b/requirements.txt index 49f113e..c608240 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -black==24.3.0 -grpcio-tools==1.62.1 -grpcio==1.62.1 -protobuf==4.25.3 +black==24.4.2 +grpcio-tools==1.63.0 +grpcio==1.63.0 +protobuf==5.26.1 pyarrow==15.0.2 -pytest==8.1.1 \ No newline at end of file +pytest==8.2.0 diff --git a/setup.py b/setup.py index ad72c5a..24e989c 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.25", + version="0.0.26", description=description, long_description=long_description, author="CloudQuery LTD",