Skip to content

Commit

Permalink
release v1.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Jul 2, 2018
1 parent 8fa5d4a commit de06c6d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.rst
@@ -1,5 +1,11 @@
1.3.11 (2018-07-02)
-------------------

- don't install bash completion by default (doesn't work on ROS buildfarm)
- make sure installed net_perf_check.sh script is executable

1.3.10 (2018-06-28)
------------------
-------------------

- Added possibility to set GenICam parameters in gc_info too
- Only show network summary in gc_config if called without parameters or with network related parameters
Expand Down
8 changes: 7 additions & 1 deletion CMakeLists.txt
Expand Up @@ -92,6 +92,7 @@ endif ()
option(BUILD_TOOLS "Build commandline tools" ON)
option(BUILD_DOC "Add target for building doxygen docs" ON)
option(BUILD_SHARED_LIBS "Build shared libs" ON)
option(INSTALL_COMPLETION "Install bash completion" OFF)

# - Build individual parts -

Expand All @@ -100,6 +101,8 @@ add_subdirectory(genicam)
add_subdirectory(rc_genicam_api)
if (BUILD_TOOLS)
add_subdirectory(tools)
endif()
if (INSTALL_COMPLETION)
add_subdirectory(completion)
endif ()

Expand Down Expand Up @@ -128,7 +131,10 @@ endif()

# Install catkin package.xml
install(FILES package.xml COMPONENT dev DESTINATION share/${PROJECT_NAME_LOWER})
install(FILES net_perf_check.sh COMPONENT dev DESTINATION share/${PROJECT_NAME_LOWER})
install(FILES net_perf_check.sh COMPONENT dev DESTINATION share/${PROJECT_NAME_LOWER}
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
GROUP_EXECUTE GROUP_READ
WORLD_EXECUTE WORLD_READ)

# - Define information for packaging -

Expand Down
2 changes: 1 addition & 1 deletion package.xml
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>rc_genicam_api</name>
<version>1.3.10</version>
<version>1.3.11</version>
<description>
GenICam/GigE Vision Convenience Layer.

Expand Down

0 comments on commit de06c6d

Please sign in to comment.