Skip to content

Commit d4ceb09

Browse files
Merge pull request #680 from gooddata/release/1.19.0
[bot] bump to 1.19.0
2 parents acc1c5c + c357250 commit d4ceb09

File tree

14 files changed

+28
-27
lines changed

14 files changed

+28
-27
lines changed

.openapi-generator/configs/gooddata-api-client.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ infoName: "GoodData (generated by OpenAPI Generator)"
66
infoEmail: "[email protected]"
77
projectName: gooddata-api-client
88
packageName: gooddata_api_client
9-
packageVersion: 1.18.1
9+
packageVersion: 1.19.0
1010
library: urllib3
1111
additionalProperties:
1212
licenseInfo: "MIT"

docs/config/production/params.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ dirpath = "dev"
1212
url = "/dev/"
1313
sitemapExclude = true
1414
[[versions]]
15-
version = "1.18"
15+
version = "1.19"
1616
dirpath = "latest"
1717
url = "/latest/"
1818
[[versions]]
19+
version = "1.18"
20+
dirpath = "1.18"
21+
url = "/1.18/"
22+
[[versions]]
1923
version = "1.17"
2024
dirpath = "1.17"
2125
url = "/1.17/"
2226
[[versions]]
2327
version = "1.16"
2428
dirpath = "1.16"
2529
url = "/1.16/"
26-
[[versions]]
27-
version = "1.15"
28-
dirpath = "1.15"
29-
url = "/1.15/"

docs/layouts/index.redir

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Redirect homepage to the latest version
22
/ {{ .Site.BaseURL }}/latest/ 301!
33
/docs/ {{ .Site.BaseURL }}/latest/ 301!
4-
/1.18/ {{ .Site.BaseURL }}/latest 301!
5-
/1.18.1/ {{ .Site.BaseURL }}/latest 301!
6-
/1.18.0/ {{ .Site.BaseURL }}/latest 301!
4+
/1.19/ {{ .Site.BaseURL }}/latest 301!
5+
/1.19.0/ {{ .Site.BaseURL }}/latest 301!
6+
/1.18.1/ {{ .Site.BaseURL }}/1.18 301!
7+
/1.18.0/ {{ .Site.BaseURL }}/1.18 301!
78
/1.17.0/ {{ .Site.BaseURL }}/1.17 301!
89
/1.16.0/ {{ .Site.BaseURL }}/1.16 301!
910
/1.15.0/ {{ .Site.BaseURL }}/1.15 301!

gooddata-api-client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v0
7-
- Package version: 1.18.1
7+
- Package version: 1.19.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

gooddata-api-client/gooddata_api_client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "1.18.1"
14+
__version__ = "1.19.0"
1515

1616
# import ApiClient
1717
from gooddata_api_client.api_client import ApiClient

gooddata-api-client/gooddata_api_client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7777
self.default_headers[header_name] = header_value
7878
self.cookie = cookie
7979
# Set default User-Agent.
80-
self.user_agent = 'OpenAPI-Generator/1.18.1/python'
80+
self.user_agent = 'OpenAPI-Generator/1.19.0/python'
8181

8282
def __enter__(self):
8383
return self

gooddata-api-client/gooddata_api_client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def to_debug_report(self):
381381
"OS: {env}\n"\
382382
"Python Version: {pyversion}\n"\
383383
"Version of the API: v0\n"\
384-
"SDK Package Version: 1.18.1".\
384+
"SDK Package Version: 1.19.0".\
385385
format(env=sys.platform, pyversion=sys.version)
386386

387387
def get_host_settings(self):

gooddata-api-client/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
1717

1818
NAME = "gooddata-api-client"
19-
VERSION = "1.18.1"
19+
VERSION = "1.19.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

gooddata-dbt/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
88

99
REQUIRES = [
10-
"gooddata-sdk~=1.18.1",
10+
"gooddata-sdk~=1.19.0",
1111
"pyyaml>=5.1",
1212
"attrs>=21.4.0,<=23.2.0",
1313
"cattrs>=22.1.0,<=23.2.3",
@@ -20,7 +20,7 @@
2020
description="dbt plugin for GoodData",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
23-
version="1.18.1",
23+
version="1.19.0",
2424
author="GoodData",
2525
author_email="[email protected]",
2626
license="MIT",

gooddata-fdw/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
88

99
REQUIRES = [
10-
"gooddata-sdk~=1.18.1",
10+
"gooddata-sdk~=1.19.0",
1111
# "multicorn>=1.4.0",
1212
]
1313

@@ -16,7 +16,7 @@
1616
description="GoodData Cloud Foreign Data Wrapper For PostgreSQL",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
19-
version="1.18.1",
19+
version="1.19.0",
2020
author="GoodData",
2121
author_email="[email protected]",
2222
license="MIT",
@@ -26,7 +26,7 @@
2626
packages=find_packages(exclude=["tests*"]),
2727
python_requires=">=3.8.0",
2828
project_urls={
29-
"Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.18.1",
29+
"Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.19.0",
3030
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3131
},
3232
classifiers=[

gooddata-pandas/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
88

99
REQUIRES = [
10-
"gooddata-sdk~=1.18.1",
10+
"gooddata-sdk~=1.19.0",
1111
"pandas>=1.0.0,<2.0.0",
1212
]
1313

@@ -16,7 +16,7 @@
1616
description="GoodData Cloud to pandas",
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",
19-
version="1.18.1",
19+
version="1.19.0",
2020
author="GoodData",
2121
author_email="[email protected]",
2222
license="MIT",
@@ -26,7 +26,7 @@
2626
packages=find_packages(exclude=["tests*"]),
2727
python_requires=">=3.8.0",
2828
project_urls={
29-
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.18.1",
29+
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.19.0",
3030
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3131
},
3232
classifiers=[

gooddata-sdk/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ At the moment the SDK provides services to inspect and interact with the Semanti
1313
* Compute Service
1414
* Table Service
1515

16-
See [DOCUMENTATION](https://www.gooddata.com/docs/python-sdk/1.18.1) for more details.
16+
See [DOCUMENTATION](https://www.gooddata.com/docs/python-sdk/1.19.0) for more details.
1717

1818
## Requirements
1919

gooddata-sdk/setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
88

99
REQUIRES = [
10-
"gooddata-api-client~=1.18.1",
10+
"gooddata-api-client~=1.19.0",
1111
"python-dateutil>=2.5.3",
1212
"pyyaml>=5.1",
1313
"attrs>=21.4.0,<=23.2.0",
@@ -20,7 +20,7 @@
2020
description="GoodData Cloud Python SDK",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
23-
version="1.18.1",
23+
version="1.19.0",
2424
author="GoodData",
2525
author_email="[email protected]",
2626
license="MIT",
@@ -30,7 +30,7 @@
3030
packages=find_packages(exclude=["tests*"]),
3131
python_requires=">=3.8.0",
3232
project_urls={
33-
"Documentation": "https://www.gooddata.com/docs/python-sdk/1.18.1",
33+
"Documentation": "https://www.gooddata.com/docs/python-sdk/1.19.0",
3434
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3535
},
3636
classifiers=[

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ exclude = ['(gooddata-api-client|.*\.snapshot\..*)']
4040
# github_url = "https://github.com/<user or organization>/<project>/"
4141

4242
[tool.tbump.version]
43-
current = "1.18.1"
43+
current = "1.19.0"
4444
regex = '''
4545
(?P<major>\d+)
4646
\.

0 commit comments

Comments
 (0)