Skip to content

Commit

Permalink
chore(release): release version 1.18.0 [skip CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Jun 4, 2021
1 parent f851303 commit d39105e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.18.0 [unreleased]
## 1.18.0 [2021-06-04]

### Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion influxdb_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,4 +298,4 @@
from influxdb_client.client.influxdb_client import InfluxDBClient
from influxdb_client.client.write.point import Point

__version__ = '1.18.0dev'
__version__ = '1.18.0'
2 changes: 1 addition & 1 deletion influxdb_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'influxdb-client-python/1.18.0dev'
self.user_agent = 'influxdb-client-python/1.18.0'

def __del__(self):
"""Dispose pools."""
Expand Down
2 changes: 1 addition & 1 deletion influxdb_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 2.0.0\n"\
"SDK Package Version: 1.18.0dev".\
"SDK Package Version: 1.18.0".\
format(env=sys.platform, pyversion=sys.version)

def update_request_header_params(self, path: str, params: dict):
Expand Down

0 comments on commit d39105e

Please sign in to comment.