diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c327cad..b740d0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -93,6 +93,7 @@ jobs: - run: | docker run \ -v "$PWD":/aioesphomeapi \ + -u "$(id -u):$(id -g)" \ ghcr.io/esphome/aioesphomeapi-proto-builder:latest if ! git diff --quiet; then echo "You have altered the generated proto files but they do not match what is expected." diff --git a/setup.py b/setup.py index 6852a77..f797e5d 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme_file: long_description = readme_file.read() -VERSION = "23.0.0" +VERSION = "23.0.1" PROJECT_NAME = "aioesphomeapi" PROJECT_PACKAGE_NAME = "aioesphomeapi" PROJECT_LICENSE = "MIT"