v1.9.2
Pre-release
Pre-release
Release notes for v1.9.2
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_kotlin", version = "1.9.2")
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 = "48e69a22c7098a2bb36bcab3bec3355a0ea1190a285c64216cf4eba3c08bba89",
url = "https://github.com/bazelbuild/rules_kotlin/releases/download/v1.9.2/rules_kotlin-v1.9.2.tar.gz",
)
What's Changed
- [Bcr] Add Bazel versions to BCR presubmit by @Bencodes in #1121
- Support user.bazelrc by @Bencodes in #1119
- Add support for -Xcontext-receivers by @Bencodes in #1117
- Refactor KotlinBuilderJvmJdepsTest to do exact dep assertions by @Bencodes in #1116
- Revert android.bzl changes introduced by #842 by @Bencodes in #1122
- Build rules_kotlin using rules_kotlin by @restingbull in #1081
- Improve jdeps logic to find more explicit and implicit dependencies by @scosenza in #1118
- Add user.bazelrc to .gitignore by @Bencodes in #1123
Full Changelog: v1.9.1...v1.9.2