Skip to content

Commit a832b71

Browse files
committed
Bugfix with timezone choices
1 parent 07079f5 commit a832b71

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Introducing API v1 for Mosquito Alert platform, a project desgined to facilitate
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v1
7-
- Package version: 0.1.2
7+
- Package version: 0.1.3
88
- Generator version: 7.12.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

mosquito_alert/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.1.2"
18+
__version__ = "0.1.3"
1919

2020
# import apis into sdk package
2121
from mosquito_alert.api.auth_api import AuthApi

mosquito_alert/api_client.py

+1-1
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/0.1.2/python'
94+
self.user_agent = 'OpenAPI-Generator/0.1.3/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

mosquito_alert/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def to_debug_report(self) -> str:
551551
"OS: {env}\n"\
552552
"Python Version: {pyversion}\n"\
553553
"Version of the API: v1\n"\
554-
"SDK Package Version: 0.1.2".\
554+
"SDK Package Version: 0.1.3".\
555555
format(env=sys.platform, pyversion=sys.version)
556556

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

mosquito_alert/models/location.py

+2-2
Large diffs are not rendered by default.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mosquito_alert"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Mosquito Alert API"
55
authors = ["Developers <it@mosquitoalert.com>"]
66
license = "GPL-3"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "mosquito-alert"
25-
VERSION = "0.1.2"
25+
VERSION = "0.1.3"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)