Skip to content

Commit bfe54f8

Browse files
Merge pull request #931 from gooddata/snapshot-master-40b351c2-to-rel/dev
[bot] Merge master/40b351c2 into rel/dev
2 parents b7b5d71 + 40b351c commit bfe54f8

File tree

16 files changed

+35
-34
lines changed

16 files changed

+35
-34
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ infoName: "GoodData (generated by OpenAPI Generator)"
66
infoEmail: "support@gooddata.com"
77
projectName: gooddata-api-client
88
packageName: gooddata_api_client
9-
packageVersion: 1.32.2
9+
packageVersion: 1.33.0
1010
library: urllib3
1111
additionalProperties:
1212
licenseInfo: "MIT"

docs/config/production/params.toml

Lines changed: 5 additions & 5 deletions
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.32"
15+
version = "1.33"
1616
dirpath = "latest"
1717
url = "/latest/"
1818
[[versions]]
19+
version = "1.32"
20+
dirpath = "1.32"
21+
url = "/1.32/"
22+
[[versions]]
1923
version = "1.31"
2024
dirpath = "1.31"
2125
url = "/1.31/"
2226
[[versions]]
2327
version = "1.30"
2428
dirpath = "1.30"
2529
url = "/1.30/"
26-
[[versions]]
27-
version = "1.29"
28-
dirpath = "1.29"
29-
url = "/1.29/"

docs/layouts/index.redir

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Redirect homepage to the latest version
22
/ {{ .Site.BaseURL }}/latest/ 301!
33
/docs/ {{ .Site.BaseURL }}/latest/ 301!
4-
/1.32/ {{ .Site.BaseURL }}/latest 301!
5-
/1.32.2/ {{ .Site.BaseURL }}/latest 301!
6-
/1.32.1/ {{ .Site.BaseURL }}/latest 301!
7-
/1.32.0/ {{ .Site.BaseURL }}/latest 301!
4+
/1.33/ {{ .Site.BaseURL }}/latest 301!
5+
/1.33.0/ {{ .Site.BaseURL }}/latest 301!
6+
/1.32.2/ {{ .Site.BaseURL }}/1.32 301!
7+
/1.32.1/ {{ .Site.BaseURL }}/1.32 301!
8+
/1.32.0/ {{ .Site.BaseURL }}/1.32 301!
89
/1.31.0/ {{ .Site.BaseURL }}/1.31 301!
910
/1.30.0/ {{ .Site.BaseURL }}/1.30 301!
1011
/1.29.1/ {{ .Site.BaseURL }}/1.29 301!

gooddata-api-client/README.md

Lines changed: 1 addition & 1 deletion
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.32.2
7+
- Package version: 1.33.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

gooddata-api-client/gooddata_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"""
1212

1313

14-
__version__ = "1.32.2"
14+
__version__ = "1.33.0"
1515

1616
# import ApiClient
1717
from gooddata_api_client.api_client import ApiClient

gooddata-api-client/gooddata_api_client/api_client.py

Lines changed: 1 addition & 1 deletion
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.32.2/python'
80+
self.user_agent = 'OpenAPI-Generator/1.33.0/python'
8181

8282
def __enter__(self):
8383
return self

gooddata-api-client/gooddata_api_client/configuration.py

Lines changed: 1 addition & 1 deletion
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.32.2".\
384+
"SDK Package Version: 1.33.0".\
385385
format(env=sys.platform, pyversion=sys.version)
386386

387387
def get_host_settings(self):

gooddata-api-client/setup.py

Lines changed: 1 addition & 1 deletion
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.32.2"
19+
VERSION = "1.33.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

gooddata-dbt/setup.py

Lines changed: 2 additions & 2 deletions
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.32.2",
10+
"gooddata-sdk~=1.33.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.32.2",
23+
version="1.33.0",
2424
author="GoodData",
2525
author_email="support@gooddata.com",
2626
license="MIT",

gooddata-fdw/setup.py

Lines changed: 3 additions & 3 deletions
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.32.2",
10+
"gooddata-sdk~=1.33.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.32.2",
19+
version="1.33.0",
2020
author="GoodData",
2121
author_email="support@gooddata.com",
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.32.2",
29+
"Documentation": "https://gooddata-fdw.readthedocs.io/en/v1.33.0",
3030
"Source": "https://github.com/gooddata/gooddata-python-sdk",
3131
},
3232
classifiers=[

0 commit comments

Comments
 (0)