Skip to content

Commit 1fb35b8

Browse files
committed
Regenerated the client
1 parent 5a3c2cb commit 1fb35b8

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Сlient for Manticore Search.
44

55

6-
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/9.1.0
6+
❗ WARNING: this is a development version of the client. The latest release's readme is https://github.com/manticoresoftware/manticoresearch-python/tree/10.0.0
77

88
## Requirements.
99

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__ = "10.0.0"
18+
__version__ = "10.0.1"
1919

2020
# Define package exports
2121
__all__ = [

manticoresearch/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/10.0.0/python'
95+
self.user_agent = 'OpenAPI-Generator/10.0.1/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

manticoresearch/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ def to_debug_report(self) -> str:
502502
"OS: {env}\n"\
503503
"Python Version: {pyversion}\n"\
504504
"Version of the API: 5.0.0\n"\
505-
"SDK Package Version: 10.0.0".\
505+
"SDK Package Version: 10.0.1".\
506506
format(env=sys.platform, pyversion=sys.version)
507507

508508
def get_host_settings(self) -> List[HostSetting]:

manticoresearch/rest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def __init__(self, configuration) -> None:
7373
cert_reqs = ssl.CERT_NONE
7474

7575
pool_args = {
76+
"num_pools": 1,
7677
"cert_reqs": cert_reqs,
7778
"ca_certs": configuration.ssl_ca_cert,
7879
"cert_file": configuration.cert_file,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "manticoresearch"
3-
version = "10.0.0"
3+
version = "10.0.1"
44
description = "Manticore Search Client"
55
authors = [
66
{name = "Manticore Software Ltd.",email = "[email protected]"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "manticoresearch-devel"
24-
VERSION = "10.0.0"
24+
VERSION = "10.0.1"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 3",

0 commit comments

Comments
 (0)