diff --git a/CHANGELOG.md b/CHANGELOG.md index dad4fcd..1bc4570 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # CHANGELOG +## v0.13.2 (2024-11-01) + +### Bug Fixes + +* fix: 🐛 reset format on .quit() to allow re-connect on same instance + +Co-authored-by: Alex Ward ([`fe5986b`](https://github.com/iwpnd/pyle38/commit/fe5986b8ff8894e3bb4d5509fb38b6b014370ce2)) + + ## v0.13.1 (2024-11-01) ### Bug Fixes diff --git a/pyle38/__init__.py b/pyle38/__init__.py index 40660a1..7f00180 100644 --- a/pyle38/__init__.py +++ b/pyle38/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.13.1" +__version__ = "0.13.2" from .tile38 import Tile38 diff --git a/pyproject.toml b/pyproject.toml index b47afa1..6a7a8c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyle38" -version = "0.13.1" +version = "0.13.2" description = "Async python client for Tile38" authors = ["Benjamin Ramser "] license = "MIT"