Skip to content

Commit

Permalink
chore(release): prepare for next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Apr 1, 2021
1 parent 5e52dca commit 8df7b18
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.17.0 [unreleased]

## 1.16.0 [2021-04-01]

### Features
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.16.0'
__version__ = '1.17.0dev'
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.16.0'
self.user_agent = 'influxdb-client-python/1.17.0dev'

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.16.0".\
"SDK Package Version: 1.17.0dev".\
format(env=sys.platform, pyversion=sys.version)

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

0 comments on commit 8df7b18

Please sign in to comment.