Release notes for v2.2.0-uber-rc01
Using Bzlmod with Bazel 7
- Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_kotlin", version = "2.2.0-uber-rc01")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_kotlin",
sha256 = "2c024076bc211d258cf1b275e539cdb0fe632124a67a86c6729e02afd9cd4532",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v2.2.0-uber-rc01/rules_kotlin-v2.2.0-uber-rc01.tar.gz",
)Full Changelog: v2.2.0-uber-alpha01-test08...v2.2.0-uber-rc01