Skip to content

Commit 3fb752c

Browse files
committed
1 parent 1fbd8c8 commit 3fb752c

8 files changed

Lines changed: 19 additions & 74 deletions

File tree

CHANGELOG.md

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

3+
## [3.0.1] - 2026-05-14
4+
5+
- Fix examples and add changelog entry for 3.0.0
6+
7+
## [3.0.0] - 2026-05-12
8+
9+
This is a major version update that includes breaking changes.
10+
11+
- Updated URLR API version to 2.0.0
12+
- Updated to OpenAPI Generator 7.22.0
13+
314
## [2.14.0] - 2026-03-31
415
- Updated to OpenAPI Generator 7.21.0
516

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# urlr@3.0.0
1+
# urlr@3.0.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: 2.0.0
8-
- Package version: 3.0.0
8+
- Package version: 3.0.1
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

1111
For more information, please visit [https://urlr.me/en](https://urlr.me/en)
@@ -96,7 +96,7 @@ with urlr.ApiClient(configuration) as api_client:
9696

9797
```
9898

99-
A complete example is [available here](examples/example1.py).
99+
Complete examples can be found in the [docs](https://github.com/URLR/urlr-python/tree/main/docs) directory of the client repository.
100100

101101
## API Endpoints
102102

examples/example1.py

Lines changed: 0 additions & 66 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "urlr"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
description = "Python client for URLR"
55
authors = [
66
{name = "URLR",email = "contact@urlr.me"},

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.0.0"
23+
VERSION = "3.0.1"
2424
PYTHON_REQUIRES = ">= 3.10"
2525
REQUIRES = [
2626
"urllib3 >= 2.1.0, < 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.0.0"
18+
__version__ = "3.0.1"
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.0.0/python'
95+
self.user_agent = 'OpenAPI-Generator/3.0.1/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
@@ -555,7 +555,7 @@ def to_debug_report(self) -> str:
555555
"OS: {env}\n"\
556556
"Python Version: {pyversion}\n"\
557557
"Version of the API: 2.0.0\n"\
558-
"SDK Package Version: 3.0.0".\
558+
"SDK Package Version: 3.0.1".\
559559
format(env=sys.platform, pyversion=sys.version)
560560

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

0 commit comments

Comments
 (0)