Skip to content

Commit 5446c5e

Browse files
committed
1 parent 6e4deb5 commit 5446c5e

7 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [3.2.2] - 2026-07-21
4+
5+
- Fix git user typo
6+
37
## [3.2.1] - 2026-07-21
48

59
- Fix changelog

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# urlr@3.2.1
1+
# urlr@3.2.2
22

33
![PyPI - Version](https://img.shields.io/pypi/v/urlr) ![PyPI - Downloads](https://img.shields.io/pypi/dm/urlr) ![PyPI - License](https://img.shields.io/pypi/l/urlr)
44

55
This SDK is automatically generated with the [OpenAPI Generator](https://openapi-generator.tech) project.
66

77
- API version: 2.1.0
8-
- Package version: 3.2.1
8+
- Package version: 3.2.2
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
For more information, please visit [https://urlr.me/en](https://urlr.me/en)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "urlr"
3-
version = "3.2.1"
3+
version = "3.2.2"
44
description = "Python client for URLR"
55
authors = [
66
{name = "URLR",email = "contact@urlr.me"},
@@ -18,7 +18,7 @@ dependencies = [
1818
]
1919

2020
[project.urls]
21-
Repository = "https://github.com/urlr/urlr-python"
21+
Repository = "https://github.com/URLR/api-clients-generation"
2222

2323
[tool.poetry]
2424
requires-poetry = ">=2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# prerequisite: setuptools
2121
# http://pypi.python.org/pypi/setuptools
2222
NAME = "urlr"
23-
VERSION = "3.2.1"
23+
VERSION = "3.2.2"
2424
PYTHON_REQUIRES = ">= 3.10"
2525
REQUIRES = [
2626
"urllib3 >= 2.6.3, < 3.0.0",

urlr/__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__ = "3.2.1"
18+
__version__ = "3.2.2"
1919

2020
# Define package exports
2121
__all__ = [

urlr/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/3.2.1/python'
95+
self.user_agent = 'OpenAPI-Generator/3.2.2/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

urlr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def to_debug_report(self) -> str:
572572
"OS: {env}\n"\
573573
"Python Version: {pyversion}\n"\
574574
"Version of the API: 2.1.0\n"\
575-
"SDK Package Version: 3.2.1".\
575+
"SDK Package Version: 3.2.2".\
576576
format(env=sys.platform, pyversion=sys.version)
577577

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

0 commit comments

Comments
 (0)