Skip to content

Commit 6759e3f

Browse files
committed
bump version to 3.1.5
1 parent 060af5d commit 6759e3f

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ROS2 Wrapper for Intel® RealSense™ Devices
22
These are packages for using Intel RealSense cameras (D400 and L500 series, SR300 camera and T265 Tracking Module) with ROS2.
33

4-
LibRealSense supported version: v2.42.0 (see [realsense2_camera release notes](https://github.com/IntelRealSense/realsense-ros/releases))
4+
LibRealSense supported version: v2.43.0 (see [realsense2_camera release notes](https://github.com/IntelRealSense/realsense-ros/releases))
55

66
## Installation Instructions
77
This version supports ROS2 Dashing, Eloquent AND Foxy.
@@ -37,7 +37,7 @@ This version supports ROS2 Dashing, Eloquent AND Foxy.
3737
- #### Install from [Debian Package](https://github.com/IntelRealSense/librealsense/blob/master/doc/distribution_linux.md#installing-the-packages) - In that case treat yourself as a developer. Make sure you follow the instructions to also install librealsense2-dev and librealsense-dkms packages.
3838

3939
#### OR
40-
- #### Build from sources by downloading the latest [Intel® RealSense™ SDK 2.0](https://github.com/IntelRealSense/librealsense/releases/tag/v2.42.0) and follow the instructions under [Linux Installation](https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md)
40+
- #### Build from sources by downloading the latest [Intel® RealSense™ SDK 2.0](https://github.com/IntelRealSense/librealsense/releases/tag/v2.43.0) and follow the instructions under [Linux Installation](https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md)
4141

4242

4343
### Step 3: Install Intel® RealSense™ ROS2 wrapper from Sources

realsense2_camera/CHANGELOG.rst

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

5+
Forthcoming
6+
-----------
7+
* Support Eloquent and Dashing.
8+
* Add filter: HDR_merge
9+
* fix initialization of colorizer image if user specified negative image size (as is in default launch file)
10+
* Remove the following tests for known playback issue with librealsense2 version 2.43.0: align_depth_color_1, align_depth_ir1_1, align_depth_ir1_decimation_1.
11+
* Remove wrong dependency
12+
* changed default image QOS to SYSTEM_DEFAULT
13+
* Add missing librealsense2 dependency from package.xml
14+
* fix bug: selection of profile disregarded stream index.
15+
* Contributors: changseung.yu, doronhi
16+
517
3.1.4 (2021-02-18)
618
------------------
719
* fix reading json file with device other than D400 series.

realsense2_camera/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ find_package(nav_msgs REQUIRED)
9797
find_package(tf2_ros REQUIRED)
9898
find_package(tf2 REQUIRED)
9999

100-
find_package(realsense2 2.42.0)
100+
find_package(realsense2 2.43.0)
101101
if(NOT realsense2_FOUND)
102102
message(FATAL_ERROR "\n\n Intel RealSense SDK 2.0 is missing, please install it from https://github.com/IntelRealSense/librealsense/releases\n\n")
103103
endif()

realsense2_camera/include/constants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#define REALSENSE_ROS_MAJOR_VERSION 3
99
#define REALSENSE_ROS_MINOR_VERSION 1
10-
#define REALSENSE_ROS_PATCH_VERSION 4
10+
#define REALSENSE_ROS_PATCH_VERSION 5
1111

1212
#define STRINGIFY(arg) #arg
1313
#define VAR_ARG_STRING(arg) STRINGIFY(arg)

realsense2_camera_msgs/CHANGELOG.rst

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

5+
Forthcoming
6+
-----------
7+
58
3.1.4 (2021-02-18)
69
------------------
710

realsense2_description/CHANGELOG.rst

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

5+
Forthcoming
6+
-----------
7+
58
3.1.4 (2021-02-18)
69
------------------
710
* d415 add plug

0 commit comments

Comments
 (0)