From 16e3fff21ef1adc1e0d6df3c8ec46342dfd98b5f Mon Sep 17 00:00:00 2001 From: Jeremiah Zucker Date: Mon, 4 Dec 2023 11:41:56 -0800 Subject: [PATCH] kotlin rules v1.7.1 (#35) --- kotlin/README.md | 5 +++-- kotlin/workspace.bzl | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/kotlin/README.md b/kotlin/README.md index 1ff2c0d..750e425 100644 --- a/kotlin/README.md +++ b/kotlin/README.md @@ -20,8 +20,9 @@ By default, the workspace declaration is configured to work with Player modules. ```python load("@rules_player//kotlin:workspace.bzl", "kotlin") kotlin( - tag = "v1.5.0", - sha256 = "12d22a3d9cbcf00f2e2d8f0683ba87d3823cb8c7f6837568dd7e48846e023307", + # Defaults + tag = "v1.7.1", + sha256 = "fd92a98bd8a8f0e1cdcb490b93f5acef1f1727ed992571232d33de42395ca9b3", baseUrl = "https://github.com/bazelbuild/rules_kotlin/releases/download", ) ``` diff --git a/kotlin/workspace.bzl b/kotlin/workspace.bzl index 7539229..3eb8831 100644 --- a/kotlin/workspace.bzl +++ b/kotlin/workspace.bzl @@ -5,10 +5,10 @@ load("//internal:maybe.bzl", "maybe") # Load Kotlin rules from remote artifact def kotlin( - tag = "v1.5.0-sugarmanz", - sha256 = "2d73b4f4343f3dfe6658a25b5751f2f6330c39f4ec23182d266174fa6bbd3192", + tag = "v1.7.1", + sha256 = "fd92a98bd8a8f0e1cdcb490b93f5acef1f1727ed992571232d33de42395ca9b3", + baseUrl = "https://github.com/bazelbuild/rules_kotlin/releases/download", name = "rules_kotlin_release.tgz", - baseUrl = "https://github.com/sugarmanz/rules_kotlin/releases/download", ): maybe( http_archive, @@ -20,7 +20,7 @@ def kotlin( # Load Kotlin rules from git def kotlin_repository( - remote = "https://github.com/sugarmanz/rules_kotlin.git", + remote = "https://github.com/bazelbuild/rules_kotlin.git", **kwargs, ): maybe(