Skip to content

Commit 07a851e

Browse files
author
GitLab CI/CD
committed
Generated update. Please review before merging.
1 parent 62cf6cb commit 07a851e

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,17 @@ target/
6262

6363
#Ipython Notebook
6464
.ipynb_checkpoints
65+
66+
# IDE
67+
.vscode
68+
.idea
69+
70+
# API Key
71+
openrouteservice-py/tests-config.ini
72+
73+
# node_modules
74+
openrouteservice-js/node_modules
75+
76+
# Generated and used during building
77+
client_version.txt
78+
openrouteservice_ignore_paths.yaml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ The openrouteservice library gives you painless access to the [openrouteservice]
33

44
| API Version | Package version | Build package |
55
| -------------- | ------------------ | ------------------ |
6-
| 7.1.1 | 7.1.1 | io.swagger.codegen.v3.generators.python.PythonClientCodegen |
6+
| 7.1.1 | 7.1.1.post1 | io.swagger.codegen.v3.generators.python.PythonClientCodegen |
77

88
For further details, please visit:
99
- our [homepage](https://openrouteservice.org)

openrouteservice/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7272
self.default_headers[header_name] = header_value
7373
self.cookie = cookie
7474
# Set default User-Agent.
75-
self.user_agent = 'Swagger-Codegen/7.1.1/python'
75+
self.user_agent = 'Swagger-Codegen/7.1.1.post1/python'
7676

7777
def __del__(self):
7878
self.pool.close()

openrouteservice/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,5 +247,5 @@ def to_debug_report(self):
247247
"OS: {env}\n"\
248248
"Python Version: {pyversion}\n"\
249249
"Version of the API: 7.1.1\n"\
250-
"SDK Package Version: 7.1.1".\
250+
"SDK Package Version: 7.1.1.post1".\
251251
format(env=sys.platform, pyversion=sys.version)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "orspytest"
7-
version = "7.1.1"
7+
version = "7.1.1.post1"
88
authors = [
99
{name = "HeiGIT gGmbH", email = "[email protected]"},
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import setup, find_packages # noqa: H301
1414

1515
NAME = "openrouteservice"
16-
VERSION = "7.1.1"
16+
VERSION = "7.1.1.post1"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

0 commit comments

Comments
 (0)