Skip to content

Commit 2c3e931

Browse files
committed
chore(release): release version 1.10.0 [skip CI]
1 parent 020e3cb commit 2c3e931

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.10.0 [unreleased]
1+
## 1.10.0 [2020-08-14]
22

33
### Features
44
1. [#140](https://github.com/influxdata/influxdb-client-python/pull/140): Added exponential backoff strategy for batching writes, Allowed to configure default retry strategy. Default value for `retry_interval` is 5_000 milliseconds.

influxdb_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,4 +296,4 @@
296296
from influxdb_client.client.influxdb_client import InfluxDBClient
297297
from influxdb_client.client.write.point import Point
298298

299-
__version__ = '1.10.0dev'
299+
__version__ = '1.10.0'

influxdb_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'influxdb-client-python/1.10.0dev'
79+
self.user_agent = 'influxdb-client-python/1.10.0'
8080

8181
def __del__(self):
8282
"""Dispose pools."""

influxdb_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def to_debug_report(self):
240240
"OS: {env}\n"\
241241
"Python Version: {pyversion}\n"\
242242
"Version of the API: 0.1.0\n"\
243-
"SDK Package Version: 1.10.0dev".\
243+
"SDK Package Version: 1.10.0".\
244244
format(env=sys.platform, pyversion=sys.version)
245245

246246
def update_request_header_params(self, path: str, params: dict):

0 commit comments

Comments
 (0)