Skip to content

Commit

Permalink
Support Robolectric 4.10.1 (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: utzcoz <utzcoz@outlook.com>
  • Loading branch information
utzcoz committed May 3, 2023
1 parent 0d58aa2 commit 9b9b3b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_robolectric",
version = "4.10",
version = "4.10.1",
bazel_compatibility = [">=6.0.0"],
compatibility_level = 1,
)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Add the `robolectric` and `rules_jvm_external` repositories in your WORKSPACE fi
```python
http_archive(
name = "robolectric",
urls = ["https://github.com/robolectric/robolectric-bazel/archive/4.10.tar.gz"],
strip_prefix = "robolectric-bazel-4.10",
urls = ["https://github.com/robolectric/robolectric-bazel/archive/refs/tags/4.10.1.tar.gz"],
strip_prefix = "robolectric-bazel-4.10.1",
sha256 = "get the sha256 from github releases",
)
load("@robolectric//bazel:robolectric.bzl", "robolectric_repositories")
Expand All @@ -31,7 +31,7 @@ http_archive(
load("@rules_jvm_external//:defs.bzl", "maven_install")
maven_install(
artifacts = [
"org.robolectric:robolectric:4.10",
"org.robolectric:robolectric:4.10.1",
],
repositories = [
"https://maven.google.com",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ maven_install(
name = "maven",
artifacts = [
"com.google.truth:truth:1.1.3",
"org.robolectric:robolectric:4.10",
"org.robolectric:robolectric:4.10.1",
],
repositories = [
"https://maven.google.com",
Expand Down

0 comments on commit 9b9b3b5

Please sign in to comment.