Skip to content

Commit

Permalink
chore(release): release version 1.14.0 [skip CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Jan 29, 2021
1 parent bf0abd7 commit e996238
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.14.0 [unreleased]
## 1.14.0 [2021-01-29]

### Features
1. [#176](https://github.com/influxdata/influxdb-client-python/pull/179): Allow providing proxy option to InfluxDBClient
Expand Down
2 changes: 1 addition & 1 deletion influxdb_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,4 +278,4 @@
from influxdb_client.client.influxdb_client import InfluxDBClient
from influxdb_client.client.write.point import Point

__version__ = '1.14.0dev'
__version__ = '1.14.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.14.0dev'
self.user_agent = 'influxdb-client-python/1.14.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.14.0dev".\
"SDK Package Version: 1.14.0".\
format(env=sys.platform, pyversion=sys.version)

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

0 comments on commit e996238

Please sign in to comment.