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'