Skip to content

Commit 9706005

Browse files
committed
docs: update CHANGELOG.md
1 parent 5e28213 commit 9706005

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## 0.12.0 [unreleased]
44

5+
### Features
6+
7+
1. [123](https://github.com/InfluxCommunity/influxdb3-python/pull/123): Introduces `query_async` method.
8+
59
### Bug Fixes
610

711
1. [#121](https://github.com/InfluxCommunity/influxdb3-python/pull/121): Fix use of arguments `verify_ssl` and `ssl_ca_cert` in `QueryApi`.

Examples/query_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async def main():
7878
write_data(client, measurement)
7979

8080
# run both coroutines simultaneously
81-
result = await asyncio.gather(fibio(10, 0.2),query_data(client, measurement))
81+
result = await asyncio.gather(fibio(10, 0.2), query_data(client, measurement))
8282
print(f"fibio sequence = {result[0]}")
8383
print(f"data set =\n{result[1]}")
8484

0 commit comments

Comments
 (0)