Skip to content

Commit fa6bd2c

Browse files
author
github-actions
committed
Release 1.54.0
1 parent 0434963 commit fa6bd2c

File tree

18 files changed

+45
-45
lines changed

18 files changed

+45
-45
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: "[email protected]"
77
projectName: gooddata-api-client
88
packageName: gooddata_api_client
9-
packageVersion: 1.53.0
9+
packageVersion: 1.54.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.53"
15+
version = "1.54"
1616
dirpath = "latest"
1717
url = "/latest/"
1818
[[versions]]
19+
version = "1.53"
20+
dirpath = "1.53"
21+
url = "/1.53/"
22+
[[versions]]
1923
version = "1.52"
2024
dirpath = "1.52"
2125
url = "/1.52/"
2226
[[versions]]
2327
version = "1.51"
2428
dirpath = "1.51"
2529
url = "/1.51/"
26-
[[versions]]
27-
version = "1.50"
28-
dirpath = "1.50"
29-
url = "/1.50/"

docs/layouts/index.redir

Lines changed: 3 additions & 2 deletions
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.53/ {{ .Site.BaseURL }}/latest 301!
5-
/1.53.0/ {{ .Site.BaseURL }}/latest 301!
4+
/1.54/ {{ .Site.BaseURL }}/latest 301!
5+
/1.54.0/ {{ .Site.BaseURL }}/latest 301!
6+
/1.53.0/ {{ .Site.BaseURL }}/1.53 301!
67
/1.52.0/ {{ .Site.BaseURL }}/1.52 301!
78
/1.51.0/ {{ .Site.BaseURL }}/1.51 301!
89
/1.50.0/ {{ .Site.BaseURL }}/1.50 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.53.0
7+
- Package version: 1.54.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.53.0"
14+
__version__ = "1.54.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.53.0/python'
80+
self.user_agent = 'OpenAPI-Generator/1.54.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.53.0".\
384+
"SDK Package Version: 1.54.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.53.0"
19+
VERSION = "1.54.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install

packages/gooddata-dbt/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# (C) 2025 GoodData Corporation
22
[project]
33
name = "gooddata-dbt"
4-
version = "1.53.0"
4+
version = "1.54.0"
55
description = "dbt plugin for GoodData"
66
readme = "README.md"
77
license = {text = "MIT"}
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
requires-python = ">=3.10"
1212
dependencies = [
13-
"gooddata-sdk~=1.53.0",
13+
"gooddata-sdk~=1.54.0",
1414
"pyyaml>=6.0",
1515
"attrs>=21.4.0,<=24.2.0",
1616
"cattrs>=22.1.0,<=24.1.1",

packages/gooddata-fdw/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# (C) 2025 GoodData Corporation
22
[project]
33
name = "gooddata-fdw"
4-
version = "1.53.0"
4+
version = "1.54.0"
55
description = "GoodData Cloud Foreign Data Wrapper For PostgreSQL"
66
readme = "README.md"
77
license = {text = "MIT"}
@@ -26,7 +26,7 @@ keywords = [
2626
]
2727
requires-python = ">=3.10"
2828
dependencies = [
29-
"gooddata-sdk~=1.53.0",
29+
"gooddata-sdk~=1.54.0",
3030
# "multicorn>=1.4.0", # Uncommented as it was in original setup.py
3131
]
3232
classifiers = [
@@ -44,7 +44,7 @@ classifiers = [
4444
]
4545

4646
[project.urls]
47-
Documentation = "https://gooddata-fdw.readthedocs.io/en/v1.53.0"
47+
Documentation = "https://gooddata-fdw.readthedocs.io/en/v1.54.0"
4848
Source = "https://github.com/gooddata/gooddata-python-sdk"
4949

5050
[dependency-groups]

0 commit comments

Comments
 (0)