diff --git a/CHANGELOG.md b/CHANGELOG.md index 9845026..bb5a806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.2.12 (2024-07-05) + +### Fix + +* fix: better handle ConnectionResetError and log timing ([`1c8fab8`](https://github.com/tutorintelligence/tcp-modbus-aio/commit/1c8fab8087aac3c10252a261c47199e7d6cc4e5f)) + + ## v0.2.11 (2024-07-05) ### Fix diff --git a/pyproject.toml b/pyproject.toml index ae54bc4..3887bdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tcp-modbus-aio" -version = "0.2.11" +version = "0.2.12" description = "asyncio client library for tcp modbus devices" authors = ["Josh Gruenstein "] license = "MIT" diff --git a/tcp_modbus_aio/__init__.py b/tcp_modbus_aio/__init__.py index 5635676..b5c9b6c 100644 --- a/tcp_modbus_aio/__init__.py +++ b/tcp_modbus_aio/__init__.py @@ -1 +1 @@ -__version__ = "0.2.11" +__version__ = "0.2.12"