Skip to content

v1.9.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 28 Mar 17:04
· 78 commits to master since this release
f5b65cc

Release notes for v1.9.3

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_kotlin", version = "1.9.3")

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 = "b3eac09c6385e3a79f3c260314c4bfb82c288d3947869b2406b11bf1ef450cc2",
    url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.3/rules_kotlin-v1.9.3.tar.gz",
)

What's Changed

New Contributors

Full Changelog: v1.9.1...v1.9.3