From 81d3322d9430273791301d6170ec6ee3d4a9c6d9 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Fri, 12 Jul 2024 21:36:09 -0500 Subject: [PATCH] 0.7.0 --- CHANGELOG.md | 7 +++++++ aioraven/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b05d9a2..37353a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Changelog for aioraven +0.7.0 (2024-07-12) +------------------ +* Add tests for timeout recovery +* Fix typing on RAVEnWriter constructor +* Expose mechanism to abort pending writes +* Add timeouts for stream device synchronization + 0.6.0 (2024-06-22) ------------------ * Switch to pyserial-asyncio-fast to fix event loop being blocked diff --git a/aioraven/__init__.py b/aioraven/__init__.py index aba16f7..d327e32 100644 --- a/aioraven/__init__.py +++ b/aioraven/__init__.py @@ -1,4 +1,4 @@ # Copyright 2022 Scott K Logan # Licensed under the Apache License, Version 2.0 -__version__ = '0.6.0' +__version__ = '0.7.0'