Skip to content

Commit d474b90

Browse files
author
Anonymous Committer
committed
Bump version to 1.0.3 and update repository URL in pyproject.toml
1 parent f252539 commit d474b90

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

justserpapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.0.0"
17+
__version__ = "1.0.3"
1818

1919
# Define package exports
2020
__all__ = [

justserpapi/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/1.0.0/python'
93+
self.user_agent = 'OpenAPI-Generator/1.0.3/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

justserpapi/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def to_debug_report(self) -> str:
554554
"OS: {env}\n"\
555555
"Python Version: {pyversion}\n"\
556556
"Version of the API: v1.0.0\n"\
557-
"SDK Package Version: 1.0.0".\
557+
"SDK Package Version: 1.0.3".\
558558
format(env=sys.platform, pyversion=sys.version)
559559

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
[project.urls]
3333
Homepage = "https://api.justserpapi.com"
3434
Documentation = "https://docs.justserpapi.com"
35-
Repository = "https://github.com/GIT_USER_ID/GIT_REPO_ID"
35+
Repository = "https://github.com/justserpapi/justserpapi-python"
3636

3737
[build-system]
3838
requires = ["setuptools>=61", "wheel"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages # noqa: F401
55

66
NAME = "justserpapi"
7-
VERSION = "1.0.0"
7+
VERSION = "1.0.3"
88
PYTHON_REQUIRES = ">= 3.9"
99
REQUIRES = [
1010
"urllib3 >= 2.1.0, < 3.0.0",

0 commit comments

Comments
 (0)