diff --git a/CHANGELOG.md b/CHANGELOG.md index c973da99..526670f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.3.5 - 2022-06-07 + +### Bug Fixes: + +- fix gbk encoding error while use cursor.log() in windows (#67) +- sqlalchemy use rest connection (#66) + ## v2.3.4 - 2022-06-06 ## v2.3.3 - 2022-06-06 diff --git a/pyproject.toml b/pyproject.toml index 83fdc32e..e34b08b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "taospy" -version = "2.3.4" +version = "2.3.5" description = "TDengine connector for python" authors = ["Taosdata Inc. "] license = "MIT" diff --git a/taos/_version.py b/taos/_version.py index 6ec85d61..85a7344d 100644 --- a/taos/_version.py +++ b/taos/_version.py @@ -1 +1 @@ -__version__ = '2.3.4' +__version__ = '2.3.5'