From cfab7901174a065bf2543be4adb73365bf03bbe2 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Thu, 7 Mar 2024 07:53:35 +1300 Subject: [PATCH 1/2] Run CI proto docker as actions user (#835) --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) 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." From 120ba1730348d1d571340ddec5a3b801f46dea46 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Mar 2024 18:53:49 +0000 Subject: [PATCH 2/2] Bump version to 23.0.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"