Skip to content

Commit

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

## [Unreleased]

## v2.7.6 - 2023-02-27

### Bug Fixes:

- add pandas-read-sql-tdengine-cloud.py (#134)
- fix for sqlalchemy warning (#135)

## v2.7.5 - 2023-02-23

### 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
Expand Up @@ -4,7 +4,7 @@
protocol_and_port = {'taos': 6030, 'taosrest': 6041, 'taosws': 6041}

for (protocol, port) in protocol_and_port.items():
engine = create_engine(f"{protocol}://root:taosdata@localhost:{port}")
engine = create_engine(f"{protocol}://root:taosdata@localhost")
conn = engine.connect()
res = pandas.read_sql(text("show databases"), conn)
conn.close()
Expand Down
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.7.5"
version = "2.7.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.7.5'
__version__ = '2.7.6'

0 comments on commit 7179254

Please sign in to comment.