Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

module(
name = "score_process",
version = "0.1.0",
version = "0.2.0",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Major version change as this is quiet a big change (having 'score' integrated functionally => having placeholders without any integration)

compatibility_level = 0,
)

Expand Down
8 changes: 4 additions & 4 deletions process/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -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.
],
)
Loading