Skip to content

Commit

Permalink
release version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Apr 17, 2020
1 parent d6ba893 commit 81a79d2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 1.6.0 [unreleased]
## 1.6.0 [2020-04-17]

### Documentation
1. [#75](https://github.com/influxdata/influxdb-client-python/issues/75): Updated docs to clarify how to use an org parameter
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ influxdb-client-python

InfluxDB 2.0 python client library.

**Note: Use this client library with InfluxDB 2.x and InfluxDB 1.8+. For connecting to InfluxDB 1.7 or earlier instances, use the `influxdb-python <https://github.com/influxdata/influxdb-python>` client library.**
**Note: Use this client library with InfluxDB 2.x and InfluxDB 1.8+. For connecting to InfluxDB 1.7 or earlier instances, use the `influxdb-python <https://github.com/influxdata/influxdb-python>`_ client library.**

InfluxDB 2.0 client 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 @@ -296,4 +296,4 @@
from influxdb_client.client.influxdb_client import InfluxDBClient
from influxdb_client.client.write.point import Point

__version__ = '1.6.0dev'
__version__ = '1.6.0'
2 changes: 1 addition & 1 deletion influxdb_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,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.6.0dev'
self.user_agent = 'influxdb-client-python/1.6.0'

def __del__(self):
if self._pool:
Expand Down
2 changes: 1 addition & 1 deletion influxdb_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,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.6.0dev".\
"SDK Package Version: 1.6.0".\
format(env=sys.platform, pyversion=sys.version)

def update_request_header_params(self, path: str, params: dict):
Expand Down
2 changes: 1 addition & 1 deletion scripts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<packageName>influxdb_client</packageName>
<sourceFolder>/</sourceFolder>
<validatable>false</validatable>
<packageVersion>1.6.0dev</packageVersion>
<packageVersion>1.6.0</packageVersion>
</configOptions>
<generateModelDocumentation>false</generateModelDocumentation>
<generateApiDocumentation>false</generateApiDocumentation>
Expand Down

0 comments on commit 81a79d2

Please sign in to comment.