Skip to content

Commit 44929c8

Browse files
chore: bump version to 3.5.0
- Update pyproject.toml to reflect new version 3.5.0 - Update __init__.py to reflect new version 3.5.0 - Update HTTPClient User-Agent string to 3.5.0
1 parent d29bd20 commit 44929c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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 = 'squarecloud-api'
3-
version = '3.4.1'
3+
version = '3.5.0'
44
description = 'SquareCloud API wrapper'
55
authors = ['Robert Nogueira <robertlucasnogueira@gmail.com>']
66
repository = 'https://github.com/squarecloudofc/wrapper-api-py'

squarecloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
from .file import File
1717
from .http.endpoints import Endpoint
1818

19-
__version__ = '3.4.1'
19+
__version__ = '3.5.0'

squarecloud/http/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async def request(self, route: Router, **kwargs) -> Response | bytes:
164164
"""
165165
headers = {
166166
'Authorization': self.api_key,
167-
'User-Agent': 'squarecloud-api/3.2.1',
167+
'User-Agent': 'squarecloud-api/3.5.0',
168168
}
169169
extra_error_kwargs: dict[str, Any] = {}
170170

0 commit comments

Comments
 (0)