Skip to content

Commit ff4acdb

Browse files
committed
Bump kilted
Signed-off-by: Antón Casas <[email protected]>
1 parent 0851d37 commit ff4acdb

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/general-issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ assignees: ''
1212
- Hardware description: <!-- hardware where you are using micro-ROS -->
1313
- RTOS: <!-- RTOS where you are using micro-ROS -->
1414
- Installation type: <!-- micro_ros_setup, modules, etc -->
15-
- Version or commit hash: <!-- version of micro-ROS used: foxy, rolling -->
15+
- Version or commit hash: <!-- version of micro-ROS used: humble, jazzy, rolling -->
1616

1717
#### Steps to reproduce the issue
1818
<!-- Detailed instructions on how to reliably reproduce this issue http://sscce.org/-->

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
jobs:
99

1010
micro_ros_arduino:
11-
runs-on: ubuntu-22.04
12-
container: ubuntu:22.04
11+
runs-on: ubuntu-24.04
12+
container: ubuntu:24.04
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/library_generation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
include:
1717
- distro: humble
1818
branch: humble
19-
- distro: iron
20-
branch: iron
2119
- distro: jazzy
2220
branch: jazzy
21+
- distro: kilted
22+
branch: kilted
2323
- distro: rolling
2424
branch: rolling
2525
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Remember that is possible to use a micro-ROS Agent just with this docker command
7070

7171
```bash
7272
# Serial micro-ROS Agent
73-
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:rolling serial --dev [YOUR BOARD PORT] -v6
73+
docker run -it --rm -v /dev:/dev --privileged --net=host microros/micro-ros-agent:kilted serial --dev [YOUR BOARD PORT] -v6
7474
```
7575
### PlatformIO
7676

@@ -81,14 +81,14 @@ PlatformIO support for this repository has been deprecated in favor of its own b
8181
If you need to add custom packages or types, or customize any internal parameter of the micro-ROS stack, you will need to recompile this library from source code:
8282

8383
```bash
84-
docker pull microros/micro_ros_static_library_builder:rolling
85-
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:rolling
84+
docker pull microros/micro_ros_static_library_builder:kilted
85+
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:kilted
8686
```
8787

8888
Optionally a specific single target can be built using the `-p <LIBRARY_TARGET>` argument like this:
8989

9090
```bash
91-
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:rolling -p <LIBRARY_TARGET>
91+
docker run -it --rm -v $(pwd):/project --env MICROROS_LIBRARY_FOLDER=extras microros/micro_ros_static_library_builder:kilted -p <LIBRARY_TARGET>
9292
```
9393

9494
Available targets `LIBRARY_TARGETS` are available on the [top of the extras/library_generation/library_generation.sh file](https://github.com/micro-ROS/micro_ros_arduino/blob/main/extras/library_generation/library_generation.sh#L13-L24)

extras/library_generation/library_generation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ros2 run micro_ros_setup create_firmware_ws.sh generate_lib
4141
pushd firmware/mcu_ws > /dev/null
4242

4343
# Workaround: Copy just tf2_msgs
44-
git clone -b rolling https://github.com/ros2/geometry2
44+
git clone -b kilted https://github.com/ros2/geometry2
4545
cp -R geometry2/tf2_msgs ros2/tf2_msgs
4646
rm -rf geometry2
4747

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=micro_ros_arduino
2-
version=2.0.6-rolling
2+
version=2.0.6-kilted
33
author=micro-ROS
44
maintainer=Pablo Garrido <[email protected]>
55
sentence=micro-ROS Arduino library

0 commit comments

Comments
 (0)