Skip to content

Commit

Permalink
Merge pull request #17 from geo-engine/bump-version
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
jdroenner authored Jul 16, 2024
2 parents 104b2d3 + 347ff4d commit 4263113
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .generation/config.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[input]
backendTag = pro-nightly-2024-03-26
backendTag = pro-nightly-2024-07-17

[general]
githubUrl = https://github.com/geo-engine/openapi-client

[python]
name = geoengine_openapi_client
version = 0.0.9
version = 0.0.10

[typescript]
name = @geoengine/openapi-client
version = 0.0.9
version = 0.0.10

2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.8.0
- Package version: 0.0.9
- Package version: 0.0.10
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "0.0.9"
__version__ = "0.0.10"

# import apis into sdk package
from geoengine_openapi_client.api.datasets_api import DatasetsApi
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'geoengine/openapi-client/python/0.0.9'
self.user_agent = 'geoengine/openapi-client/python/0.0.10'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.8.0\n"\
"SDK Package Version: 0.0.9".\
"SDK Package Version: 0.0.10".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geoengine_openapi_client"
version = "0.0.9"
version = "0.0.10"
description = "Geo Engine Pro API"
authors = ["Geo Engine Developers <dev@geoengine.de>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "geoengine-openapi-client"
VERSION = "0.0.9"
VERSION = "0.0.10"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
4 changes: 2 additions & 2 deletions typescript/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## @geoengine/openapi-client@0.0.9
## @geoengine/openapi-client@0.0.10

This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

Expand Down Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @geoengine/openapi-client@0.0.9 --save
npm install @geoengine/openapi-client@0.0.10 --save
```

_unPublished (not recommended):_
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/esm/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Configuration {
}
export const DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.9'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.10'
}
});
/**
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Configuration {
exports.Configuration = Configuration;
exports.DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.9'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.10'
}
});
/**
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@geoengine/openapi-client",
"version": "0.0.9",
"version": "0.0.10",
"description": "OpenAPI client for @geoengine/openapi-client",
"author": "OpenAPI-Generator",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class Configuration {

export const DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.9'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.10'
}
});

Expand Down

0 comments on commit 4263113

Please sign in to comment.