Skip to content

Commit d14bdba

Browse files
committed
1 parent b1e9c59 commit d14bdba

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
lines changed

CHANGELOG.md

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

3+
## [2.9.3] - 2025-06-30
4+
5+
- Fix Python build
36
## [2.9.2] - 2025-06-30
47

58
- Fix Python build

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
1+
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: 1.9
8-
- Package version: 2.9.2
8+
- Package version: 2.9.3
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,11 +1,11 @@
11
[project]
22
name = "urlr"
3-
version = "2.9.2"
3+
version = "2.9.3"
44
description = "Python client for URLR"
55
authors = [
66
{name = "URLR",email = "[email protected]"},
77
]
8-
license = "MIT"
8+
license-expression = "MIT"
99
readme = "README.md"
1010
keywords = ["link shortener", "api", "sdk", "client"]
1111
requires-python = ">=3.9"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "urlr"
25-
VERSION = "2.9.2"
25+
VERSION = "2.9.3"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",
@@ -42,7 +42,7 @@
4242
install_requires=REQUIRES,
4343
packages=find_packages(exclude=["test", "tests"]),
4444
include_package_data=True,
45-
license_expression="MIT",
45+
license="MIT",
4646
long_description_content_type='text/markdown',
4747
long_description="""\
4848
API powering the features of URLR.&lt;br&gt;&lt;br&gt;Note that in order to facilitate integration, we provide SDKs for various languages at https://github.com/URLR.&lt;br&gt;&lt;br&gt;Key API principles:&lt;br&gt; &lt;ul&gt;&lt;li&gt;All dates follow **ISO-8601** format&lt;/li&gt;&lt;li&gt;Most errors follow **RFC 9457** standard&lt;/li&gt;&lt;li&gt;All responses are delivered in English&lt;/li&gt;&lt;/ul&gt;

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__ = "2.9.2"
18+
__version__ = "2.9.3"
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
@@ -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/2.9.2/python'
94+
self.user_agent = 'OpenAPI-Generator/2.9.3/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

urlr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def to_debug_report(self) -> str:
512512
"OS: {env}\n"\
513513
"Python Version: {pyversion}\n"\
514514
"Version of the API: 1.9\n"\
515-
"SDK Package Version: 2.9.2".\
515+
"SDK Package Version: 2.9.3".\
516516
format(env=sys.platform, pyversion=sys.version)
517517

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

0 commit comments

Comments
 (0)