diff --git a/.github/workflows/regen.yml b/.github/workflows/regen.yml index 3cd0f86..304ef57 100644 --- a/.github/workflows/regen.yml +++ b/.github/workflows/regen.yml @@ -24,7 +24,7 @@ jobs: make clone-proto make gen-proto - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v6 with: # required so the PR triggers workflow runs token: ${{ secrets.GH_CQ_BOT }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1f5bc20..c558e0d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.21" + ".": "0.0.22" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c28fb3..1c93e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.0.22](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.21...v0.0.22) (2024-02-01) + + +### Bug Fixes + +* **deps:** Update dependency black to v24 ([#54](https://github.com/cloudquery/plugin-pb-python/issues/54)) ([0164923](https://github.com/cloudquery/plugin-pb-python/commit/0164923369b1e2bd972f445164f6b2964655d655)) +* **deps:** Update dependency protobuf to v4.25.2 ([#53](https://github.com/cloudquery/plugin-pb-python/issues/53)) ([b348e46](https://github.com/cloudquery/plugin-pb-python/commit/b348e46011a0d48b42d2138a5b19d1ddc591e5ed)) +* **deps:** Update dependency pytest to v8 ([#57](https://github.com/cloudquery/plugin-pb-python/issues/57)) ([3684dd8](https://github.com/cloudquery/plugin-pb-python/commit/3684dd8d62a9ff88cd9d281d8b022a4bd63cf269)) + ## [0.0.21](https://github.com/cloudquery/plugin-pb-python/compare/v0.0.20...v0.0.21) (2024-01-02) diff --git a/requirements.txt b/requirements.txt index 7e366bf..2425717 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -black==23.12.1 +black==24.1.1 grpcio-tools==1.60.0 grpcio==1.60.0 -protobuf==4.25.1 +protobuf==4.25.2 pyarrow==13.0.0 -pytest==7.4.4 \ No newline at end of file +pytest==8.0.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 6ef0d4b..6dea727 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ] setuptools.setup( name=name, - version="0.0.21", + version="0.0.22", description=description, long_description=long_description, author="CloudQuery LTD",