From 4114fa05f5b140cb539c8a7df7e5db91b3590669 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Wed, 28 Feb 2024 23:02:58 +0100 Subject: [PATCH 1/3] build: Allow newer zeroconf versions > 0.120.0 --- CHANGELOG.md | 3 +++ pyproject.toml | 2 +- requirements.txt | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d468e6..868bab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _Changes in the next release_ +### Changed +- Allow newer zeroconf versions than 0.120.0 (e.g. pyatv 0.14.5 requires 0.131.0). + --- ## v0.1.4 - 2024-02-27 diff --git a/pyproject.toml b/pyproject.toml index d9baa7e..d3b344b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ requires-python = ">=3.10" dependencies = [ "pyee>=9.0", "websockets>=11.0", - "zeroconf~=0.120.0", + "zeroconf>=0.120.0", ] dynamic = ["version"] diff --git a/requirements.txt b/requirements.txt index ec7b1ca..7c236a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ pyee>=9.0 websockets>=11.0 -zeroconf~=0.120.0 +zeroconf>=0.120.0 From f507c2a8799e52127d80cf2b9c0b283f0e2cb760 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Wed, 28 Feb 2024 23:06:45 +0100 Subject: [PATCH 2/3] ci: update actions/setup-python GitHub action --- .github/workflows/python-code-format.yml | 2 +- .github/workflows/python-publish-pypi.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-code-format.yml b/.github/workflows/python-code-format.yml index 062ccfc..778de07 100644 --- a/.github/workflows/python-code-format.yml +++ b/.github/workflows/python-code-format.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" diff --git a/.github/workflows/python-publish-pypi.yml b/.github/workflows/python-publish-pypi.yml index 5605203..2806012 100644 --- a/.github/workflows/python-publish-pypi.yml +++ b/.github/workflows/python-publish-pypi.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies @@ -44,7 +44,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies From d6113f4951d6641ce391b9530e0029bc0c7d0a3d Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Wed, 28 Feb 2024 23:09:40 +0100 Subject: [PATCH 3/3] Release 0.1.5 --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 868bab6..d788910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 _Changes in the next release_ +--- + +## v0.1.5 - 2024-02-28 ### Changed - Allow newer zeroconf versions than 0.120.0 (e.g. pyatv 0.14.5 requires 0.131.0). ---- - ## v0.1.4 - 2024-02-27 ### Added - Media-player entity features ([core-api/#32](https://github.com/unfoldedcircle/core-api/issues/32)):