Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmattig committed Oct 28, 2024
1 parent b0555cd commit c90dc02
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-08-31
backendTag = pro-nightly-2024-10-29

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

[python]
name = geoengine_openapi_client
version = 0.0.12
version = 0.0.13

[typescript]
name = @geoengine/openapi-client
version = 0.0.12
version = 0.0.13

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.12
- Package version: 0.0.13
- 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.12"
__version__ = "0.0.13"

# 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.12'
self.user_agent = 'geoengine/openapi-client/python/0.0.13'
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.12".\
"SDK Package Version: 0.0.13".\
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.12"
version = "0.0.13"
description = "Geo Engine Pro API"
authors = ["Geo Engine Developers <[email protected]>"]
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.12"
VERSION = "0.0.13"
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.12
## @geoengine/openapi-client@0.0.13

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/[email protected].12 --save
npm install @geoengine/[email protected].13 --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.12'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.13'
}
});
/**
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.12'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.13'
}
});
/**
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.12",
"version": "0.0.13",
"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.12'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.13'
}
});

Expand Down

0 comments on commit c90dc02

Please sign in to comment.