v2.1.1
Pre-release
Pre-release
Release notes for v2.1.1
Using Bzlmod with Bazel 7
- Enable with
common --enable_bzlmod
in.bazelrc
. - 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
- Add 8.x to presubmit CI by @Bencodes in #1256
- Add .bazelbsp to the gitignore file by @Bencodes in #1258
- Clean up _get_associates creation by @Bencodes in #1259
- Require a mnemonic when calling _run_kt_builder_action by @Bencodes in #1261
- Add support for experimental treatInternalAsPrivate by @rbeazleyspot in #1248
- Improve maintenance of the capabilities. by @restingbull in #1252
- Update platforms to 0.0.11 by @Bencodes in #1263
- Pull java_stub_template.txt as an http_file by @Bencodes in #1270
- Pass module_name from kt_android_library to kt_jvm_library by @sukolsak in #1277
- Fixes for Windows issues found in the course of updating rules_jvm_external to use Starlark Android rules by @ahumesky in #1274
- Add support for strict associate deps by @Bencodes in #1260
New Contributors
- @rbeazleyspot made their first contribution in #1248
- @sukolsak made their first contribution in #1277
- @ahumesky made their first contribution in #1274
Full Changelog: v2.1.0...v2.1.1