Skip to content

Commit 39efe7c

Browse files
author
github-actions
committed
Bump to 1.32.0
1 parent 291028f commit 39efe7c

File tree

16 files changed

+33
-32
lines changed

16 files changed

+33
-32
lines changed

Diff for: .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.31.0
9+
packageVersion: 1.32.0
1010
library: urllib3
1111
additionalProperties:
1212
licenseInfo: "MIT"

Diff for: 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.31"
15+
version = "1.32"
1616
dirpath = "latest"
1717
url = "/latest/"
1818
[[versions]]
19+
version = "1.31"
20+
dirpath = "1.31"
21+
url = "/1.31/"
22+
[[versions]]
1923
version = "1.30"
2024
dirpath = "1.30"
2125
url = "/1.30/"
2226
[[versions]]
2327
version = "1.29"
2428
dirpath = "1.29"
2529
url = "/1.29/"
26-
[[versions]]
27-
version = "1.28"
28-
dirpath = "1.28"
29-
url = "/1.28/"

Diff for: docs/layouts/index.redir

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Redirect homepage to the latest version
22
/ {{ .Site.BaseURL }}/latest/ 301!
33
/docs/ {{ .Site.BaseURL }}/latest/ 301!
4-
/1.31/ {{ .Site.BaseURL }}/latest 301!
5-
/1.31.0/ {{ .Site.BaseURL }}/latest 301!
4+
/1.32/ {{ .Site.BaseURL }}/latest 301!
5+
/1.32.0/ {{ .Site.BaseURL }}/latest 301!
6+
/1.31.0/ {{ .Site.BaseURL }}/1.31 301!
67
/1.30.0/ {{ .Site.BaseURL }}/1.30 301!
78
/1.29.1/ {{ .Site.BaseURL }}/1.29 301!
89
/1.29.0/ {{ .Site.BaseURL }}/1.29 301!

Diff for: 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.31.0
7+
- Package version: 1.32.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

Diff for: 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.31.0"
14+
__version__ = "1.32.0"
1515

1616
# import ApiClient
1717
from gooddata_api_client.api_client import ApiClient

Diff for: 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.31.0/python'
80+
self.user_agent = 'OpenAPI-Generator/1.32.0/python'
8181

8282
def __enter__(self):
8383
return self

Diff for: 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.31.0".\
384+
"SDK Package Version: 1.32.0".\
385385
format(env=sys.platform, pyversion=sys.version)
386386

387387
def get_host_settings(self):

Diff for: 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.31.0"
19+
VERSION = "1.32.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

Diff for: 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.31.0",
10+
"gooddata-sdk~=1.32.0",
1111
"pyyaml>=5.1",
1212
"attrs>=21.4.0,<=24.2.0",
1313
"cattrs>=22.1.0,<=24.1.1",
@@ -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.31.0",
23+
version="1.32.0",
2424
author="GoodData",
2525
author_email="[email protected]",
2626
license="MIT",

Diff for: 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.31.0",
10+
"gooddata-sdk~=1.32.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.31.0",
19+
version="1.32.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.9.0",
2828
project_urls={
29-
"Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.31.0",
29+
"Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.32.0",
3030
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3131
},
3232
classifiers=[

Diff for: gooddata-flexconnect/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
REQUIRES = [
1010
"dynaconf>=3.1.11,<4.0.0",
11-
"gooddata-flight-server~=1.31.0",
12-
"gooddata-sdk~=1.31.0",
11+
"gooddata-flight-server~=1.32.0",
12+
"gooddata-sdk~=1.32.0",
1313
"orjson>=3.9.15,<4.0.0",
1414
"pyarrow>=16.1.0",
1515
"structlog>=24.0.0,<25.0.0",
@@ -20,7 +20,7 @@
2020
description="Build your own data source for GoodData Cloud and GoodData Cloud Native.",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
23-
version="1.31.0",
23+
version="1.32.0",
2424
author="GoodData",
2525
author_email="[email protected]",
2626
license="MIT",
@@ -31,7 +31,7 @@
3131
include_package_data=True,
3232
python_requires=">=3.9.0",
3333
project_urls={
34-
"Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v1.31.0",
34+
"Documentation": "https://gooddata-flexconnect.readthedocs.io/en/v1.32.0",
3535
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3636
},
3737
classifiers=[

Diff for: gooddata-flight-server/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
description="Flight RPC server to host custom functions",
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",
25-
version="1.31.0",
25+
version="1.32.0",
2626
author="GoodData",
2727
author_email="[email protected]",
2828
license="MIT",
@@ -33,7 +33,7 @@
3333
include_package_data=True,
3434
python_requires=">=3.9.0",
3535
project_urls={
36-
"Documentation": "https://gooddata-flight-server.readthedocs.io/en/v1.31.0",
36+
"Documentation": "https://gooddata-flight-server.readthedocs.io/en/v1.32.0",
3737
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3838
},
3939
scripts=[

Diff for: 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.31.0",
10+
"gooddata-sdk~=1.32.0",
1111
"pandas>=2.0.0,<3.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.31.0",
19+
version="1.32.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.9.0",
2828
project_urls={
29-
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.31.0",
29+
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.32.0",
3030
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3131
},
3232
classifiers=[

Diff for: 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.31.0) for more details.
16+
See [DOCUMENTATION](https://www.gooddata.com/docs/python-sdk/1.32.0) for more details.
1717

1818
## Requirements
1919

Diff for: 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.31.0",
10+
"gooddata-api-client~=1.32.0",
1111
"python-dateutil>=2.5.3",
1212
"pyyaml>=5.1",
1313
"attrs>=21.4.0,<=24.2.0",
@@ -22,7 +22,7 @@
2222
description="GoodData Cloud Python SDK",
2323
long_description=long_description,
2424
long_description_content_type="text/markdown",
25-
version="1.31.0",
25+
version="1.32.0",
2626
author="GoodData",
2727
author_email="[email protected]",
2828
license="MIT",
@@ -36,7 +36,7 @@
3636
"bin/gdc",
3737
],
3838
project_urls={
39-
"Documentation": "https://www.gooddata.com/docs/python-sdk/1.31.0",
39+
"Documentation": "https://www.gooddata.com/docs/python-sdk/1.32.0",
4040
"Source": "https://github.com/gooddata/gooddata-python-sdk",
4141
},
4242
classifiers=[

Diff for: pyproject.toml

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

5252
[tool.tbump.version]
53-
current = "1.31.0"
53+
current = "1.32.0"
5454
regex = '''
5555
(?P<major>\d+)
5656
\.

0 commit comments

Comments
 (0)