Skip to content

Commit eaf980b

Browse files
[N/A] readme update post migration (#206)
1 parent 97fb7b6 commit eaf980b

4 files changed

Lines changed: 15 additions & 14 deletions

File tree

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ All types of contributions are encouraged and valued. See the [Table of Contents
2323

2424
## I Have a Question
2525

26-
Before you ask a question, it is best to search for existing [issues](https://github.com/bdaiinstitute/synchros2/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
26+
Before you ask a question, it is best to search for existing [issues](https://github.com/rai-opensource/synchros2/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first.
2727

2828
If you then still feel the need to ask a question and need clarification, we recommend the following:
2929

@@ -47,7 +47,7 @@ A good bug report shouldn't leave others needing to chase you up for more inform
4747

4848
- Make sure that you are using the latest version.
4949
- Determine if your bug is really a bug and not an error on your side. If you are looking for support, you might want to check [this section](#i-have-a-question)).
50-
- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/bdaiinstitute/synchros2/issues?q=label%3Abug).
50+
- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/rai-opensource/synchros2/issues?q=label%3Abug).
5151
- Collect information about the bug:
5252
- Stack trace (Traceback)
5353
- OS, ROS, Platform and Version (Windows, Linux, macOS, x86, ARM)
@@ -60,7 +60,7 @@ A good bug report shouldn't leave others needing to chase you up for more inform
6060

6161
We use GitHub issues to track bugs and errors. If you run into an issue with the project:
6262

63-
- Open an [issue](https://github.com/bdaiinstitute/synchros2/issues/new).
63+
- Open an [issue](https://github.com/rai-opensource/synchros2/issues/new).
6464
- Explain the behavior you would expect and the actual behavior.
6565
- Please provide as much context as possible and describe the *reproduction steps* that someone else can follow to recreate the issue on their own. This usually includes your code. For good bug reports you should isolate the problem and create a reduced test case.
6666
- Provide the information you collected in the previous section.
@@ -78,13 +78,13 @@ Once it's filed:
7878

7979
- Make sure that you are using the latest version.
8080
- Read the documentation carefully and ensure the functionality is indeed missing.
81-
- Perform a [search](https://github.com/bdaiinstitute/synchros2/issues) to see if the feature has already been requested. If it has, add a comment to the existing issue instead of opening a new one.
81+
- Perform a [search](https://github.com/rai-opensource/synchros2/issues) to see if the feature has already been requested. If it has, add a comment to the existing issue instead of opening a new one.
8282
- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Keep in mind that we want features that will be useful to the majority of our users and not just a small subset. If you're just targeting a minority of users, consider writing an add-on/plugin library.
8383

8484
<!-- omit in toc -->
8585
#### How Do I Submit a Good Feature Request?
8686

87-
Feature requests are tracked as [GitHub issues](https://github.com/bdaiinstitute/synchros2/issues).
87+
Feature requests are tracked as [GitHub issues](https://github.com/rai-opensource/synchros2/issues).
8888

8989
- Use a **clear and descriptive title** for the issue to identify the suggestion.
9090
- Provide a **step-by-step description of the suggested enhancement** in as many details as possible.

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
# Repository Migration Notice
22

33
> [!IMPORTANT]
4-
> This repository is moving to the **RAI-Opensource** GitHub organization in **about 2 weeks from April 9, 2026 (UTC)**.
4+
> This repository has moved to the **RAI-Opensource** GitHub organization!
55
>
6-
> Current status: **pre-migration**.
7-
> Migration target org: <https://github.com/RAI-Opensource>
6+
> Current status: **Migrated**.
7+
>
8+
> - Migration target org: <https://github.com/RAI-Opensource>
9+
> - Previous target org: <https://github.com/bdaiinstitute>
810
>
911
> What to do now:
1012
>
11-
> - Watch this repository for the final cutover update and destination repository link.
12-
> - Plan to update your git remote after the move:
13+
> - Update your git remote:
1314
>
1415
> ```bash
15-
> git remote set-url origin <new-repository-url>
16+
> git remote set-url origin https://github.com/RAI-Opensource/synchros2
1617
> ```
1718
>
18-
> - If you maintain downstream docs/scripts, prepare to update links from this repository to the new org.
19+
> - If you maintain downstream docs/scripts, update links from this repository to the new org.
1920
>
2021
2122
# `synchros2`

synchros2/docs/concepts/message_feeds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Any message filter can become a feed, allowing:
1212

1313
Like message filters, most message feeds can be chained. This is true for all but those that externally source messages, ROS 2 topic subscriptions being the prime example. These are sources only. Other message feeds built into `synchros2` offer a vehicle for generic map-filter-reduce patterns, time synchronization across multiple message feeds, and synchronized `tf` lookups.
1414

15-
**Note:** While any message filter can become a feed, standard ROS 2 message filters are usually not thread-safe. See [`synchros2.filters`](https://github.com/bdaiinstitute/synchros2/tree/main/synchros2/synchros2/filters.py) for thread-safe (re)implementations.
15+
**Note:** While any message filter can become a feed, standard ROS 2 message filters are usually not thread-safe. See [`synchros2.filters`](https://github.com/rai-opensource/synchros2/tree/main/synchros2/synchros2/filters.py) for thread-safe (re)implementations.
1616

1717
## Looping over topic messages
1818

synchros2/docs/getting_started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ sudo apt install ros-$ROS_DISTRO-synchros2
2828
```bash
2929
mkdir -p path/to/workspace/src # for a new workspace
3030
cd path/to/workspace/src
31-
git clone https://github.com/bdaiinstitute/synchros2.git
31+
git clone https://github.com/rai-opensource/synchros2.git
3232
```
3333

3434
2. Install `synchros2` dependencies with `rosdep`:

0 commit comments

Comments
 (0)