Skip to content

Commit ffd1c81

Browse files
committed
Bump version 0.2.4 and update dependencies in MODULE.bazel
1 parent b82f684 commit ffd1c81

File tree

2 files changed

+356
-60
lines changed

2 files changed

+356
-60
lines changed

MODULE.bazel

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# *******************************************************************************
1313
module(
1414
name = "score_baselibs",
15-
version = "0.2.3",
15+
version = "0.2.4",
1616
compatibility_level = 0,
1717
)
1818

1919
## Configure the C++ toolchain
2020

21-
bazel_dep(name = "score_bazel_cpp_toolchains", version = "0.2.0", dev_dependency = True)
21+
bazel_dep(name = "score_bazel_cpp_toolchains", version = "0.2.2", dev_dependency = True)
2222

2323
gcc = use_extension("@score_bazel_cpp_toolchains//extensions:gcc.bzl", "gcc", dev_dependency = True)
2424
gcc.toolchain(
@@ -59,29 +59,22 @@ use_repo(
5959
"score_qcc_x86_64_toolchain",
6060
)
6161

62-
bazel_dep(name = "googletest", version = "1.17.0.bcr.1")
63-
bazel_dep(name = "google_benchmark", version = "1.9.4")
62+
bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
63+
bazel_dep(name = "google_benchmark", version = "1.9.5")
6464
bazel_dep(name = "boost.container", version = "1.87.0")
6565
bazel_dep(name = "boost.interprocess", version = "1.87.0")
66-
bazel_dep(name = "download_utils", version = "1.0.1")
66+
bazel_dep(name = "download_utils", version = "1.2.2")
6767
bazel_dep(name = "rules_cc", version = "0.2.16")
6868

6969
## Custom Module Loading
7070

71-
bazel_dep(name = "score_docs_as_code", version = "2.3.0")
72-
bazel_dep(name = "score_process", version = "1.4.0")
73-
bazel_dep(name = "score_tooling", version = "1.0.4")
74-
75-
# We need the copyright exclusion feature
76-
git_override(
77-
module_name = "score_tooling",
78-
commit = "8894fe5440436a8c6d9e214c97b18d619c7f7eac",
79-
remote = "https://github.com/eclipse-score/tooling.git",
80-
)
71+
bazel_dep(name = "score_docs_as_code", version = "3.0.0")
72+
bazel_dep(name = "score_process", version = "1.4.3")
73+
bazel_dep(name = "score_tooling", version = "1.1.0")
8174

8275
## Configure the python toolchain
8376

84-
bazel_dep(name = "rules_python", version = "1.4.1")
77+
bazel_dep(name = "rules_python", version = "1.8.3")
8578

8679
PYTHON_VERSION = "3.12"
8780

@@ -92,10 +85,9 @@ python.toolchain(
9285
python_version = PYTHON_VERSION,
9386
)
9487

95-
bazel_dep(name = "aspect_rules_py", version = "1.4.0", dev_dependency = True)
88+
bazel_dep(name = "aspect_rules_py", version = "1.6.3", dev_dependency = True)
9689
bazel_dep(name = "buildifier_prebuilt", version = "8.2.0.2", dev_dependency = True)
97-
98-
bazel_dep(name = "aspect_rules_lint", version = "1.0.3")
90+
bazel_dep(name = "aspect_rules_lint", version = "1.5.3", dev_dependency = True)
9991

10092
deb = use_repo_rule("@download_utils//download/deb:defs.bzl", "download_deb")
10193

@@ -140,7 +132,7 @@ deb(
140132
)
141133

142134
bazel_dep(name = "nlohmann_json", version = "3.11.3")
143-
bazel_dep(name = "bazel_skylib", version = "1.8.1")
135+
bazel_dep(name = "bazel_skylib", version = "1.8.2")
144136

145137
#############################################################
146138
#

0 commit comments

Comments
 (0)