From d6115c813ad0170de34bc0e3a27cd22bdf2bf307 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 22 Dec 2022 02:57:24 +0000 Subject: [PATCH] 0.47.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/zeroconf/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95574dca..6516d296 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.47.0 (2022-12-22) +### Feature +* Optimize equality checks for DNS records ([#1120](https://github.com/python-zeroconf/python-zeroconf/issues/1120)) ([`3a25ff7`](https://github.com/python-zeroconf/python-zeroconf/commit/3a25ff74bea83cd7d50888ce1ebfd7650d704bfa)) + ## v0.46.0 (2022-12-21) ### Feature * Optimize the dns cache ([#1119](https://github.com/python-zeroconf/python-zeroconf/issues/1119)) ([`e80fcef`](https://github.com/python-zeroconf/python-zeroconf/commit/e80fcef967024f8e846e44b464a82a25f5550edf)) diff --git a/pyproject.toml b/pyproject.toml index 69ecbf31..426ac5ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zeroconf" -version = "0.46.0" +version = "0.47.0" description = "A pure python implementation of multicast DNS service discovery" authors = ["Paul Scott-Murphy", "William McBrine", "Jakub Stasiak", "J. Nick Koston"] license = "LGPL" diff --git a/src/zeroconf/__init__.py b/src/zeroconf/__init__.py index af7feb21..3c968e60 100644 --- a/src/zeroconf/__init__.py +++ b/src/zeroconf/__init__.py @@ -84,7 +84,7 @@ __author__ = 'Paul Scott-Murphy, William McBrine' __maintainer__ = 'Jakub Stasiak ' -__version__ = '0.46.0' +__version__ = '0.47.0' __license__ = 'LGPL'