Skip to content

0.0.10

Compare
Choose a tag to compare
@martis42 martis42 released this 30 Jul 09:38
· 191 commits to main since this release

Put the following into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "depend_on_what_you_use",
    sha256 = "4986b05c2bf90fab23ce0cb78249d726a6a129c8d4817d1356d8900c711e7dc7",
    strip_prefix = "depend_on_what_you_use-0.0.10",
    url = "https://github.com/martis42/depend_on_what_you_use/archive/refs/tags/0.0.10.tar.gz",
)

load("@depend_on_what_you_use//:setup_step_1.bzl", dwyu_setup_step_1 = "setup_step_1")
dwyu_setup_step_1()

load("@depend_on_what_you_use//:setup_step_2.bzl", dwyu_setup_step_2 = "setup_step_2")
dwyu_setup_step_2()

load("@depend_on_what_you_use//:setup_step_3.bzl", dwyu_setup_step_3 = "setup_step_3")
dwyu_setup_step_3()

Breaking Changes

  • Minimum Bazel version is now 5.0.0
  • Minimum Python version is now 3.8

Noteworthy Changes

New Contributors

Full Changelog: 0.0.9...0.0.10