From 5267e9df5f4a61e9b0ed450adee9302a4752125c Mon Sep 17 00:00:00 2001 From: takasehideki Date: Thu, 22 Feb 2024 13:44:50 +0900 Subject: [PATCH 1/2] re-enrich in response to https://github.com/b5g-ex/zenohex/pull/24#discussion_r1498629202 --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ba54218..ddf5de5 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,8 @@ If you wish to run communication tests between different sessions, please run th USE_DIFFERENT_SESSION="1" mix test ``` -FYI, CI does this in `test-with-another-session` without defining `SCOUTING_DELAY`, so this test sometimes fails on GHA. +FYI, CI does this in `test-with-another-session`. +This test may fail on GHA depending on whether the scouting is successful or not. ### How to release From fe3051b0118c37ca7b7e931643354015603aab32 Mon Sep 17 00:00:00 2001 From: takasehideki Date: Thu, 22 Feb 2024 13:48:08 +0900 Subject: [PATCH 2/2] fix link to `main` branch --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ddf5de5..f980628 100644 --- a/README.md +++ b/README.md @@ -91,10 +91,10 @@ iex()> Zenohex.Subscriber.recv_timeout(subscriber, 1000) ### Practical examples -We implemented practical examples under the [lib/zenohex/examples](https://github.com/b5g-ex/zenohex/tree/v0.2.0-rc.2/lib/zenohex/examples). +We implemented practical examples under the [lib/zenohex/examples](https://github.com/b5g-ex/zenohex/tree/main/lib/zenohex/examples). Since they consist of `Supervisor` and `GenServer`, we think they are useful as examples of more Elixir-like applications. -Please read the [lib/zenohex/examples/README.md](https://github.com/b5g-ex/zenohex/tree/v0.2.0-rc.2/lib/zenohex/examples/README.md) to use them as your implementation's reference. +Please read the [lib/zenohex/examples/README.md](https://github.com/b5g-ex/zenohex/tree/main/lib/zenohex/examples/README.md) to use them as your implementation's reference. ## For developers