diff --git a/MODULE.bazel b/MODULE.bazel index 988163746d..cb39bea660 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -13,7 +13,7 @@ module( name = "score_process", - version = "0.1.0", + version = "0.2.0", compatibility_level = 0, ) diff --git a/process/BUILD b/process/BUILD index d87a8ba59d..43ea9ddf95 100644 --- a/process/BUILD +++ b/process/BUILD @@ -21,14 +21,14 @@ load("@score_docs_as_code//:docs.bzl", "docs") # - `process:docs` for building documentation at build-time docs( - conf_dir="process", # Where 'conf.py' is - docs_targets=[ + conf_dir = "process", # Where 'conf.py' is + docs_targets = [ { "suffix": "latest", # latest main branch documentation build }, ], - source_dir="process", # Where the RST files are located - source_files_to_scan_for_needs_links=[ + source_dir = "process", # Where the RST files are located + source_files_to_scan_for_needs_links = [ # Note: you can add filegroups, globs, or entire targets here. ], )