Skip to content

Commit

Permalink
chore(release): release version 1.12.0 [skip CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Oct 30, 2020
1 parent 95988fb commit 8167012
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.12.0 [unreleased]
## 1.12.0 [2020-10-30]

1. [#163](https://github.com/influxdata/influxdb-client-python/pull/163): Added support for Python 3.9

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

__version__ = '1.11.0dev'
__version__ = '1.11.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.11.0dev'
self.user_agent = 'influxdb-client-python/1.11.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 @@ -240,7 +240,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.1.0\n"\
"SDK Package Version: 1.11.0dev".\
"SDK Package Version: 1.11.0".\
format(env=sys.platform, pyversion=sys.version)

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

0 comments on commit 8167012

Please sign in to comment.