Skip to content

v2.2.0-uber-rc01

Latest

Choose a tag to compare

@github-actions github-actions released this 19 Nov 22:35

Release notes for v2.2.0-uber-rc01

Using Bzlmod with Bazel 7

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
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