From f8e2381a500c78dcefeba3772822d5d3ec5f6060 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 5 Sep 2025 15:15:11 -0500 Subject: [PATCH 1/2] fix: missing wheel builds for Windows (#1613) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e8d1ef0..e8e30030 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -170,7 +170,7 @@ jobs: [ ubuntu-24.04-arm, ubuntu-latest, - windows-2019, + windows-latest, macos-13, macos-latest, ] From 4998907262adbbb64525b850d3a89526257c2201 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Fri, 5 Sep 2025 20:31:32 +0000 Subject: [PATCH 2/2] 0.147.2 Automatically generated by python-semantic-release --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- src/zeroconf/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f71e8adc..27886405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # CHANGELOG +## v0.147.2 (2025-09-05) + +### Bug Fixes + +- Missing wheel builds for Windows + ([#1613](https://github.com/python-zeroconf/python-zeroconf/pull/1613), + [`f8e2381`](https://github.com/python-zeroconf/python-zeroconf/commit/f8e2381a500c78dcefeba3772822d5d3ec5f6060)) + + ## v0.147.1 (2025-09-05) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 909b0e1c..a8fb5e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zeroconf" -version = "0.147.1" +version = "0.147.2" description = "A pure python implementation of multicast DNS service discovery" authors = ["Paul Scott-Murphy", "William McBrine", "Jakub Stasiak", "J. Nick Koston"] license = "LGPL-2.1-or-later" diff --git a/src/zeroconf/__init__.py b/src/zeroconf/__init__.py index 81c6e773..efa1d8d2 100644 --- a/src/zeroconf/__init__.py +++ b/src/zeroconf/__init__.py @@ -88,7 +88,7 @@ __author__ = "Paul Scott-Murphy, William McBrine" __maintainer__ = "Jakub Stasiak " -__version__ = "0.147.1" +__version__ = "0.147.2" __license__ = "LGPL"