Skip to content

Commit

Permalink
release: v2.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sangshuduo committed Nov 20, 2022
1 parent 4e17b1b commit 9d422bd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v2.6.6 - 2022-11-20

### Bug Fixes:

- fix tmq crash (#108)

## v2.6.5 - 2022-11-11

### Bug Fixes:
Expand Down
2 changes: 1 addition & 1 deletion examples/pandas-read-sql.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas
from sqlalchemy import create_engine

for driver in ("taos", "taosws", "taosrest"):
for driver in ("taos", "taosrest"):
engine = create_engine(f"{driver}://root:taosdata@localhost")
res = pandas.read_sql("show databases", engine)
print(res)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "taospy"
version = "2.6.5"
version = "2.6.6"
description = "TDengine connector for python"
authors = ["Taosdata Inc. <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion taos/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.6.5'
__version__ = '2.6.6'

0 comments on commit 9d422bd

Please sign in to comment.