Skip to content

Commit 3129cc5

Browse files
authored
Merge pull request #20 from tuneinsight/release-v1.3.1
Release v1.3.1
2 parents ee7ab33 + 1a76870 commit 3129cc5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: tuneinsight
3-
Version: 1.3.0
3+
Version: 1.3.1
44
Summary: Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API.
55
License: Apache-2.0
66
Author: Tune Insight SA

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "tuneinsight"
3-
version = "1.3.0" # Ignored.
3+
version = "1.3.1" # Ignored.
44
description = "Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API."
55
authors = ["Tune Insight SA"]
66
license = "Apache-2.0"

src/tuneinsight/api/api-checksum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
45ef3a4d2aed31f445016f57fd45409cd6b70cf9d8d4a2520e336b5573fee9a3
1+
3f82c06daf4c7255dbbee2c685b0812b7e78ce0b0ace7599fe953ad902f4e629

src/tuneinsight/api/sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" A client library for accessing Tune Insight API """
1+
"""A client library for accessing Tune Insight API"""
22

33
from .client import AuthenticatedClient, Client
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
""" Contains methods for accessing the API """
1+
"""Contains methods for accessing the API"""

src/tuneinsight/api/sdk/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Contains shared errors types that can be raised from API functions """
1+
"""Contains shared errors types that can be raised from API functions"""
22

33

44
class UnexpectedStatus(Exception):

src/tuneinsight/api/sdk/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Contains all the data models used in inputs/outputs """
1+
"""Contains all the data models used in inputs/outputs"""
22

33
from .access_scope import AccessScope
44
from .add_columns import AddColumns

src/tuneinsight/api/sdk/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Contains some shared types for properties """
1+
"""Contains some shared types for properties"""
22

33
from http import HTTPStatus
44
from typing import Any, BinaryIO, Generic, Literal, MutableMapping, Optional, Tuple, TypeVar

0 commit comments

Comments
 (0)