diff --git a/CHANGELOG.md b/CHANGELOG.md index a8876c4e..265b7eab 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.2.3 - 2022-03-29 + +### Bug Fixes: + +- [TD-14371]:remove unecessary print() lines +- [TD-14382]:fix row_count property always be 0 + ## v2.2.2 - 2022-03-28 ### Features: diff --git a/pyproject.toml b/pyproject.toml index f1cfcfd3..38c504fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "taospy" -version = "2.2.2" +version = "2.2.3" description = "TDengine connector for python" authors = ["Taosdata Inc. "] license = "AGPL-3.0" diff --git a/taos/_version.py b/taos/_version.py index f1edb192..05633ca0 100644 --- a/taos/_version.py +++ b/taos/_version.py @@ -1 +1 @@ -__version__ = '2.2.2' +__version__ = '2.2.3'