Skip to content

Commit

Permalink
release version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar committed Feb 14, 2020
1 parent 0fd11af commit 14b813f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ influxdb-client-python
:target: https://influxdb-client.readthedocs.io/en/latest/?badge=latest
:alt: Documentation status

.. image:: https://img.shields.io/badge/slack-join_chat-white.svg?logo=slack&style=social
:target: https://www.influxdata.com/slack
:alt: Slack Status

.. _documentation: https://influxdb-client.readthedocs.io

InfluxDB 2.0 python client library.
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.4.0dev'
__version__ = '1.4.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 = 'OpenAPI-Generator/1.4.0dev/python'
self.user_agent = 'OpenAPI-Generator/1.4.0/python'

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.4.0dev".\
"SDK Package Version: 1.4.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.4.0dev</packageVersion>
<packageVersion>1.4.0</packageVersion>
</configOptions>
<generateModelDocumentation>false</generateModelDocumentation>
<generateApiDocumentation>false</generateApiDocumentation>
Expand Down

0 comments on commit 14b813f

Please sign in to comment.