Skip to content

Commit b9218a1

Browse files
feat: generate SDKs for Looker 24.6
Release-As: 24.6.0
1 parent ce27df4 commit b9218a1

File tree

7 files changed

+5391
-765
lines changed

7 files changed

+5391
-765
lines changed

csharp/rtl/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public struct Constants
6161

6262
public const string DefaultApiVersion = "4.0";
6363
public const string AgentPrefix = "CS-SDK";
64-
public const string LookerVersion = "24.4";
64+
public const string LookerVersion = "24.6";
6565

6666
public const string Bearer = "Bearer";
6767
public const string LookerAppiId = "x-looker-appid";

kotlin/src/main/com/looker/sdk/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ package com.looker.sdk
2828

2929
const val ENVIRONMENT_PREFIX = "LOOKERSDK"
3030
const val SDK_TAG = "KT-SDK"
31-
const val LOOKER_VERSION = "24.4"
31+
const val LOOKER_VERSION = "24.6"
3232
const val API_VERSION = "4.0"
3333
const val AGENT_TAG = "$SDK_TAG $LOOKER_VERSION"
3434
const val LOOKER_APPID = "x-looker-appid"

packages/sdk/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
2525
*/
2626

27-
export const sdkVersion = '24.4';
27+
export const sdkVersion = '24.6';
2828
export const environmentPrefix = 'LOOKERSDK';

python/looker_sdk/sdk/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
# THE SOFTWARE.
2222

23-
sdk_version = "24.4"
23+
sdk_version = "24.6"
2424
environment_prefix = "LOOKERSDK"

0 commit comments

Comments
 (0)