Skip to content

Commit 5d015ca

Browse files
update app version
1 parent 3e9f836 commit 5d015ca

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cufinder-py"
7-
version = "1.0.1"
7+
version = "1.1.0"
88
description = "Python SDK for the CUFinder API."
99
readme = "README.md"
1010
requires-python = ">=3.8"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name="cufinder-py",
17-
version="1.0.1",
17+
version="1.1.0",
1818
author="Cufinder Team",
1919
author_email="support@cufinder.io",
2020
description="Type-safe Python SDK for easily integrating with the Cufinder API",

src/cufinder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from .services import *
3535
from .types import CseParams, PseParams, LbsParams
3636

37-
__version__ = "1.0.1"
37+
__version__ = "1.1.0"
3838
__author__ = "CUFinder Team"
3939
__email__ = "support@cufinder.io"
4040

src/cufinder/base_api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def __init__(self, config: CufinderClientConfig, api_key: str):
9696
self.session.headers.update({
9797
'x-api-key': api_key,
9898
'Content-Type': 'application/x-www-form-urlencoded',
99-
'User-Agent': 'cufinder-py/1.0.1',
99+
'User-Agent': 'cufinder-py/1.1.0',
100100
})
101101

102102
# Set default timeout

0 commit comments

Comments
 (0)