Skip to content

Commit 8303ab5

Browse files
authored
Added version bump script and move setting.sh to scripts/ (#6)
* Added version bump script and move setting.sh to scripts/ Signed-off-by: Daun Jeong <jdu@robotis.com> * Modified bump_version script Signed-off-by: Daun Jeong <jdu@robotis.com> * Modified path in setting.sh Signed-off-by: Daun Jeong <jdu@robotis.com> --------- Signed-off-by: Daun Jeong <jdu@robotis.com>
1 parent 69ce761 commit 8303ab5

12 files changed

Lines changed: 100 additions & 277 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 263 deletions
This file was deleted.

CITATION.cff

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ authors:
1010
repository-code: https://github.com/ROBOTIS-move/antbot
1111
url: https://robotis-move.github.io/antbot/
1212
license: Apache-2.0
13+
version: 1.0.0
1314
keywords:
1415
- autonomous-mobile-robot
1516
- swerve-drive

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@ antbot/
251251
├── vanjee_lidar_sdk/ # Vanjee 3D LiDAR driver
252252
├── vanjee_lidar_msg/ # Vanjee LiDAR message definitions
253253
├── docs/ # Documentation and images
254-
├── setting.sh # Dependency installation script
254+
├── scripts/ # Utility scripts
255+
│ └── setting.sh # Dependency installation script
255256
└── additional_repos.repos # External repository list for vcs import
256257
```
257258

@@ -266,7 +267,7 @@ antbot/
266267
> ```bash
267268
> mkdir -p ~/antbot_ws/src && cd ~/antbot_ws/src
268269
> git clone https://github.com/ROBOTIS-move/antbot.git
269-
> cd ~/antbot_ws/src/antbot && bash setting.sh
270+
> cd ~/antbot_ws/src/antbot && bash scripts/setting.sh
270271
> cd ~/antbot_ws && colcon build --symlink-install && source install/setup.bash
271272
> ros2 launch antbot_bringup bringup.launch.py
272273
> ```
@@ -290,7 +291,7 @@ git clone https://github.com/ROBOTIS-move/antbot.git
290291

291292
```bash
292293
cd ~/antbot_ws/src/antbot
293-
bash setting.sh
294+
bash scripts/setting.sh
294295
```
295296

296297
**3.** Build the workspace:

README_ko.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ antbot/
244244
├── vanjee_lidar_sdk/ # Vanjee 3D LiDAR 드라이버
245245
├── vanjee_lidar_msg/ # Vanjee LiDAR 메시지 정의
246246
├── docs/ # 문서 및 이미지
247-
├── setting.sh # 의존성 설치 스크립트
247+
├── scripts/ # 유틸리티 스크립트
248+
│ └── setting.sh # 의존성 설치 스크립트
248249
└── additional_repos.repos # vcs import용 외부 저장소 목록
249250
```
250251

@@ -259,7 +260,7 @@ antbot/
259260
> ```bash
260261
> mkdir -p ~/antbot_ws/src && cd ~/antbot_ws/src
261262
> git clone https://github.com/ROBOTIS-move/antbot.git
262-
> cd ~/antbot_ws/src/antbot && bash setting.sh
263+
> cd ~/antbot_ws/src/antbot && bash scripts/setting.sh
263264
> cd ~/antbot_ws && colcon build --symlink-install && source install/setup.bash
264265
> ros2 launch antbot_bringup bringup.launch.py
265266
> ```
@@ -283,7 +284,7 @@ git clone https://github.com/ROBOTIS-move/antbot.git
283284

284285
```bash
285286
cd ~/antbot_ws/src/antbot
286-
bash setting.sh
287+
bash scripts/setting.sh
287288
```
288289

289290
**3.** 워크스페이스를 빌드합니다:

antbot_gazebo/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
44
<package format="3">
55
<name>antbot_gazebo</name>
6-
<version>0.1.0</version>
6+
<version>1.0.0</version>
77
<description>Ignition Gazebo simulation package for ANTBot</description>
88
<maintainer email="osh@robotis.com">SungHyeon Oh</maintainer>
99
<license>Apache-2.0</license>

antbot_navigation/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>antbot_navigation</name>
5-
<version>0.0.0</version>
5+
<version>1.0.0</version>
66
<description>Nav2 navigation stack integration for AntBot swerve-drive robot</description>
77
<maintainer email="osh@robotis.com">SungHyeon Oh</maintainer>
88
<license>Apache-2.0</license>

docs/wiki/src/content/docs/en/software/environment-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If you need to install ROS 2 Humble, refer to the [official installation guide](
4343

4444
```bash
4545
cd ~/antbot_ws/src/antbot
46-
bash setting.sh
46+
bash scripts/setting.sh
4747
```
4848

4949
3. Build workspace

docs/wiki/src/content/docs/en/software/repository.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ antbot/
2929
|-- antbot_teleop/ # Keyboard/joystick teleoperation
3030
|-- vanjee_lidar_sdk/ # Vanjee 3D LiDAR driver (external)
3131
|-- vanjee_lidar_msg/ # LiDAR message definitions (external)
32-
|-- setting.sh # Dependency installation script
32+
|-- scripts/ # Utility scripts
33+
| |-- setting.sh # Dependency installation script
3334
+-- additional_repos.repos # External repository list (for vcs import)
3435
```

docs/wiki/src/content/docs/software/environment-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ROS 2 Humble 설치가 필요한 경우, [공식 설치 가이드](https://docs.
4343

4444
```bash
4545
cd ~/antbot_ws/src/antbot
46-
bash setting.sh
46+
bash scripts/setting.sh
4747
```
4848

4949
3. 워크스페이스 빌드

docs/wiki/src/content/docs/software/repository.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ antbot/
2929
|-- antbot_teleop/ # 키보드/조이스틱 텔레오퍼레이션
3030
|-- vanjee_lidar_sdk/ # Vanjee 3D LiDAR 드라이버 (외부)
3131
|-- vanjee_lidar_msg/ # LiDAR 메시지 정의 (외부)
32-
|-- setting.sh # 의존성 설치 스크립트
32+
|-- scripts/ # 유틸리티 스크립트
33+
| |-- setting.sh # 의존성 설치 스크립트
3334
+-- additional_repos.repos # 외부 저장소 목록 (vcs import용)
3435
```

0 commit comments

Comments
 (0)