Skip to content

Commit 78c0070

Browse files
AlexanderLanina-zw
andauthored
set version and fix command name (#294)
Co-authored-by: Andreas Zwinkau <[email protected]>
1 parent 4473a7a commit 78c0070

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
module(
1515
name = "score_docs_as_code",
16-
version = "1.5.0",
17-
compatibility_level = 1,
16+
version = "2.0.0",
17+
compatibility_level = 2,
1818
)
1919

2020
###############################################################################

docs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def docs(source_dir = "docs", data = [], deps = []):
116116
)
117117

118118
py_binary(
119-
name = "docs_combo",
119+
name = "docs_combo_experimental",
120120
tags = ["cli_help=Build full documentation with all dependencies:\nbazel run //:docs_combo_experimental"],
121121
srcs = ["@score_docs_as_code//src:incremental.py"],
122122
data = data_with_docs_sources,

src/extensions/score_sphinx_bundle/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ def setup(app: Sphinx) -> dict[str, object]:
6969

7070
return {
7171
"version": "0.1",
72+
# Keep this in sync with the score_docs_as_code version in MODULE.bazel
73+
"env_version": 200, # 2.0.0
7274
"parallel_read_safe": True,
7375
"parallel_write_safe": True,
7476
}

0 commit comments

Comments
 (0)