Skip to content

Commit f070e4f

Browse files
committed
release: 0.1.9
1 parent bcb01cf commit f070e4f

File tree

8 files changed

+11
-9
lines changed

8 files changed

+11
-9
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
all:
2-
make openapi
1+
.PHONY: all download openapi
2+
all: download openapi
3+
download:
4+
curl -o openapi.json http://localhost:8000/openapi.json
35

46
openapi:
57
docker run --rm \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Sensor Storage for Upstream data
55
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

77
- API version: 0.0.1
8-
- Package version: 0.1.8
8+
- Package version: 0.1.9
99
- Generator version: 7.14.0
1010
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1111

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"projectName": "upstream-api-client",
33
"packageName": "upstream_api_client",
4-
"packageVersion": "0.1.8",
4+
"packageVersion": "0.1.9",
55
"packageUrl": "https://github.com/In-For-Disaster-Analytics/upstream-python-api-client",
66
"packageAuthor": "Upstream Python Client",
77
"packageAuthorEmail": "info@upstream-project.org",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "upstream_api_client"
3-
version = "0.1.8"
3+
version = "0.1.9"
44
description = "Upstream Sensor Storage"
55
authors = [
66
{name = "Will Mobley",email = "wmobley@tacc.utexas.edu"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "upstream-api-client"
25-
VERSION = "0.1.8"
25+
VERSION = "0.1.9"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

upstream_api_client/__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__ = "0.1.8"
18+
__version__ = "0.1.9"
1919

2020
# Define package exports
2121
__all__ = [

upstream_api_client/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/0.1.8/python'
94+
self.user_agent = 'OpenAPI-Generator/0.1.9/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

upstream_api_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def to_debug_report(self) -> str:
511511
"OS: {env}\n"\
512512
"Python Version: {pyversion}\n"\
513513
"Version of the API: 0.0.1\n"\
514-
"SDK Package Version: 0.1.8".\
514+
"SDK Package Version: 0.1.9".\
515515
format(env=sys.platform, pyversion=sys.version)
516516

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

0 commit comments

Comments
 (0)