Skip to content
Open
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ user.bazelrc
.ruff_cache

# docs:incremental and docs:ide_support build artifacts
/_build
_build
ubproject.toml

# Vale - editorial style guide
.vale.ini
Expand Down
6 changes: 4 additions & 2 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ setup_starpls(
)

docs(
data = [
"@score_process//:needs_json",
external_needs = [
"@score_process//:needs_json_file",
],
project = "S-CORE Time",
project_url = "https://eclipse-score.github.io/time",
source_dir = "docs",
)

Expand Down
5 changes: 2 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
module(
name = "score_time",
version = "0.0.0",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

If the compatibility_level here is removed, also the version should be removed at the same time.
This will be handled by the S-CORE bazel registry, as soon as an actual release is done. No maintenance required here.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

With that, please adapt the version in the PR title, too. Shall be 7.1.0 now

compatibility_level = 0,
)

## Configure the C++ toolchain
Expand Down Expand Up @@ -69,7 +68,7 @@ bazel_dep(name = "score_logging", version = "0.2.1")

### Modules that are used internally within the repository but not exposed as part of the public API

bazel_dep(name = "score_docs_as_code", version = "4.5.0")
bazel_dep(name = "score_docs_as_code", version = "7.1.0")

bazel_dep(name = "score_cpp_policies", version = "0.0.1", dev_dependency = True)

Expand All @@ -81,7 +80,7 @@ git_override(
remote = "https://github.com/eclipse-score/score_cpp_policies.git",
)

bazel_dep(name = "score_process", version = "1.6.0", dev_dependency = True)
bazel_dep(name = "score_process", version = "2.0.3", dev_dependency = True)
bazel_dep(name = "score_tooling", version = "1.2.0", dev_dependency = True)

# cpp support in use_format_targets(languages=[...]) was added after 1.2.0.
Expand Down
16 changes: 13 additions & 3 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 0 additions & 57 deletions docs/conf.py

This file was deleted.

Loading