Skip to content

Commit b3e5bd9

Browse files
committed
Regenerated the client
1 parent e014a0c commit b3e5bd9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

manticoresearch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "8.0.0"
18+
__version__ = "9.0.0"
1919

2020
# import apis into sdk package
2121
from manticoresearch.api.index_api import IndexApi

manticoresearch/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/8.0.0/python'
94+
self.user_agent = 'OpenAPI-Generator/9.0.0/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

manticoresearch/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def to_debug_report(self):
385385
"OS: {env}\n"\
386386
"Python Version: {pyversion}\n"\
387387
"Version of the API: 5.0.0\n"\
388-
"SDK Package Version: 8.0.0".\
388+
"SDK Package Version: 9.0.0".\
389389
format(env=sys.platform, pyversion=sys.version)
390390

391391
def get_host_settings(self):

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 = "manticoresearch"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
description = "Manticore Search Client"
55
authors = ["Manticore Software Ltd. <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "manticoresearch"
25-
VERSION = "8.0.0"
25+
VERSION = "9.0.0"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3",

0 commit comments

Comments
 (0)