Skip to content

Commit 81a79d2

Browse files
committed
release version 1.6.0
1 parent d6ba893 commit 81a79d2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.6.0 [unreleased]
1+
## 1.6.0 [2020-04-17]
22

33
### Documentation
44
1. [#75](https://github.com/influxdata/influxdb-client-python/issues/75): Updated docs to clarify how to use an org parameter

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ influxdb-client-python
3636

3737
InfluxDB 2.0 python client library.
3838

39-
**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.**
39+
**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.**
4040

4141
InfluxDB 2.0 client features
4242
----------------------------

influxdb_client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,4 +296,4 @@
296296
from influxdb_client.client.influxdb_client import InfluxDBClient
297297
from influxdb_client.client.write.point import Point
298298

299-
__version__ = '1.6.0dev'
299+
__version__ = '1.6.0'

influxdb_client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7575
self.default_headers[header_name] = header_value
7676
self.cookie = cookie
7777
# Set default User-Agent.
78-
self.user_agent = 'influxdb-client-python/1.6.0dev'
78+
self.user_agent = 'influxdb-client-python/1.6.0'
7979

8080
def __del__(self):
8181
if self._pool:

influxdb_client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def to_debug_report(self):
231231
"OS: {env}\n"\
232232
"Python Version: {pyversion}\n"\
233233
"Version of the API: 0.1.0\n"\
234-
"SDK Package Version: 1.6.0dev".\
234+
"SDK Package Version: 1.6.0".\
235235
format(env=sys.platform, pyversion=sys.version)
236236

237237
def update_request_header_params(self, path: str, params: dict):

scripts/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<packageName>influxdb_client</packageName>
2525
<sourceFolder>/</sourceFolder>
2626
<validatable>false</validatable>
27-
<packageVersion>1.6.0dev</packageVersion>
27+
<packageVersion>1.6.0</packageVersion>
2828
</configOptions>
2929
<generateModelDocumentation>false</generateModelDocumentation>
3030
<generateApiDocumentation>false</generateApiDocumentation>

0 commit comments

Comments
 (0)