Skip to content

Commit 8933306

Browse files
committed
Update maintainer and changelogs
1 parent 7961b1b commit 8933306

18 files changed

Lines changed: 50 additions & 32 deletions

File tree

depthai-ros/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog for package depthai-ros
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
3.3.0 (2026-06-10)
6+
------------------
7+
* Require DepthAI 3.7.1 packages.
8+
* Adds telemetry to help us understand how the library is used so we can improve it
9+
* To opt out set `DEPTHAI_TELEMETRY=0` in the environment
10+
511
3.2.1 (2026-05-15)
612
------------------
713
* Add support for RVC4 IMU magnetometer and rotation vector data.

depthai-ros/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.10.2) # CMake version in Ubuntu 18.04 LTS
22

3-
project(depthai-ros VERSION 3.2.1 LANGUAGES CXX C)
3+
project(depthai-ros VERSION 3.3.0 LANGUAGES CXX C)
44

55
set(CMAKE_CXX_STANDARD 14)
66

depthai-ros/package.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>depthai-ros</name>
4-
<version>3.2.1</version>
4+
<version>3.3.0</version>
55
<description>The depthai-ros package</description>
66

77
<author>Sachin Guruswamy</author>
88
<author>Adam Serafin</author>
99

1010
<!-- temporary -->
11-
<maintainer email="matevz.morato@luxonis.com">Matevz Morato</maintainer>
11+
<maintainer email="sebastjan.ahtik@luxonis.com">Aljaž Sebastjan Ahtik</maintainer>
1212

1313
<license>MIT</license>
1414
<buildtool_depend>ament_cmake</buildtool_depend>
15-
16-
<exec_depend version_gte="3.6.1">depthai</exec_depend>
15+
16+
<exec_depend version_gte="3.7.1">depthai</exec_depend>
1717
<exec_depend>depthai_ros_msgs</exec_depend>
1818
<exec_depend>depthai_bridge</exec_depend>
1919
<exec_depend>depthai_examples</exec_depend>

depthai_bridge/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog for package depthai_bridge
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
3.3.0 (2026-06-10)
6+
------------------
7+
* Require DepthAI 3.7.1 packages.
8+
* Adds telemetry to help us understand how the library is used so we can improve it
9+
* To opt out set `DEPTHAI_TELEMETRY=0` in the environment
10+
511
3.2.1 (2026-05-15)
612
------------------
713
* Add support for RVC4 IMU magnetometer and rotation vector data.

depthai_bridge/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
33

44
project(
55
depthai_bridge
6-
VERSION 3.2.1
6+
VERSION 3.3.0
77
LANGUAGES CXX C)
88

99
set(CMAKE_CXX_STANDARD 17)

depthai_bridge/package.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>depthai_bridge</name>
4-
<version>3.2.1</version>
4+
<version>3.3.0</version>
55
<description>The depthai_bridge package</description>
66

77
<author>Sachin Guruswamy</author>
88
<author>Adam Serafin</author>
99

10-
<!-- temporary -->
11-
<maintainer email="matevz.morato@luxonis.com">Matevz Morato</maintainer>
10+
<maintainer email="sebastjan.ahtik@luxonis.com">Aljaž Sebastjan Ahtik</maintainer>
1211

1312
<license>MIT</license>
1413

@@ -20,7 +19,7 @@
2019
<test_depend>ament_cmake_gtest</test_depend>
2120
<depend>cv_bridge</depend>
2221
<depend>camera_info_manager</depend>
23-
<depend version_gte="3.6.1">depthai</depend>
22+
<depend version_gte="3.7.1">depthai</depend>
2423
<depend>depthai_ros_msgs</depend>
2524
<depend>image_transport</depend>
2625
<depend>libopencv-dev</depend>

depthai_descriptions/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.8)
2-
project(depthai_descriptions VERSION 3.2.1)
2+
project(depthai_descriptions VERSION 3.3.0)
33

44
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
55
add_compile_options(-Wall -Wextra -Wpedantic)

depthai_descriptions/package.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>depthai_descriptions</name>
4-
<version>3.2.1</version>
4+
<version>3.3.0</version>
55
<description>The depthai_descriptions package</description>
66

77
<author>Adam Serafin</author>
88

9-
<!-- temporary -->
10-
<maintainer email="matevz.morato@luxonis.com">Matevz Morato</maintainer>
9+
<maintainer email="sebastjan.ahtik@luxonis.com">Aljaž Sebastjan Ahtik</maintainer>
1110

1211
<license>MIT</license>
1312

depthai_examples/CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Changelog for package depthai_examples
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
3.3.0 (2026-06-10)
6+
------------------
7+
* Require DepthAI 3.7.1 packages.
8+
* Adds telemetry to help us understand how the library is used so we can improve it
9+
* To opt out set `DEPTHAI_TELEMETRY=0` in the environment
10+
511
3.2.1 (2026-05-15)
612
------------------
713
* Add support for RVC4 IMU magnetometer and rotation vector data.

depthai_examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.10.2) # CMake version in Ubuntu 18.04 LTS
22
project(
33
depthai_examples
4-
VERSION 3.2.1
4+
VERSION 3.3.0
55
LANGUAGES CXX C)
66

77
set(CMAKE_CXX_STANDARD 17)

0 commit comments

Comments
 (0)