Skip to content

v2.1.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Feb 05:39
· 28 commits to master since this release
7c57e0c

Release notes for v2.1.1

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.1.1")

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 = "425bca48bcb4be7fcae6079c68a1589dd94e55955bed71ef07d1ab1b13cae550",
    url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v2.1.1/rules_kotlin-v2.1.1.tar.gz",
)

What's Changed

New Contributors

Full Changelog: v2.1.0...v2.1.1