Skip to content

Commit ebdfcc5

Browse files
authored
Merge pull request #1312 from ApexAI/iox-#1311-increase-version-to-2.0.1
Iox #1311 increase version to 2.0.1
2 parents d6b1825 + cc20019 commit ebdfcc5

File tree

25 files changed

+63
-13
lines changed

25 files changed

+63
-13
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

cmake/package/package.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
# SPDX-License-Identifier: Apache-2.0
1616
cmake_minimum_required(VERSION 3.16)
17-
set(IOX_VERSION_STRING "2.0.0")
17+
set(IOX_VERSION_STRING "2.0.1")
1818

1919
project(iceoryx_package VERSION ${IOX_VERSION_STRING})
2020

doc/aspice_swe3_4/CMakeLists.txt

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
cmake_minimum_required(VERSION 3.16)
1818

19-
set(IOX_VERSION_STRING "2.0.0")
19+
set(IOX_VERSION_STRING "2.0.1")
2020

2121
project(iceoryx_doc VERSION ${IOX_VERSION_STRING})
2222

@@ -26,6 +26,7 @@ set(DOXYGEN_GENERATE_HTML YES)
2626
set(DOXYGEN_GENERATE_LATEX YES)
2727
set(DOXYGEN_GENERATE_XML YES)
2828
set(DOXYGEN_XML_OUTPUT xml)
29+
# if some header need to be excluded from the exclude pattern have a look at INCLUDE_DIR_AND_ADDITIONAL_FILES below
2930
set(DOXYGEN_EXCLUDE_PATTERNS "*/internal/*")
3031
set(DOXYGEN_EXCLUDE_SYMBOLS "internal::*")
3132

@@ -76,8 +77,26 @@ foreach(val RANGE ${cmp_len})
7677

7778
set(DOXYGEN_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/doc/${cmp})
7879

80+
set(INCLUDE_DIR_AND_ADDITIONAL_FILES ${cmp_dir}/include)
81+
if(${cmp} STREQUAL iceoryx_posh)
82+
list(APPEND INCLUDE_DIR_AND_ADDITIONAL_FILES
83+
${cmp_dir}/include/iceoryx_posh/internal/popo/base_client.hpp
84+
${cmp_dir}/include/iceoryx_posh/internal/popo/base_publisher.hpp
85+
${cmp_dir}/include/iceoryx_posh/internal/popo/base_server.hpp
86+
${cmp_dir}/include/iceoryx_posh/internal/popo/base_subscriber.hpp
87+
${cmp_dir}/include/iceoryx_posh/internal/popo/client_impl.hpp
88+
${cmp_dir}/include/iceoryx_posh/internal/popo/publisher_impl.hpp
89+
${cmp_dir}/include/iceoryx_posh/internal/popo/server_impl.hpp
90+
${cmp_dir}/include/iceoryx_posh/internal/popo/subscriber_impl.hpp
91+
${cmp_dir}/include/iceoryx_posh/internal/popo/untyped_client_impl.hpp
92+
${cmp_dir}/include/iceoryx_posh/internal/popo/untyped_publisher_impl.hpp
93+
${cmp_dir}/include/iceoryx_posh/internal/popo/untyped_server_impl.hpp
94+
${cmp_dir}/include/iceoryx_posh/internal/popo/untyped_subscriber_impl.hpp
95+
)
96+
endif()
97+
7998
doxygen_add_docs(doxygen_${cmp}
80-
${cmp_dir}/include
99+
${INCLUDE_DIR_AND_ADDITIONAL_FILES}
81100
WORKING_DIRECTORY ${cmp_dir}/include
82101
ALL)
83102
endforeach()
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# iceoryx v2.0.1
2+
3+
## [v2.0.1](https://github.com/eclipse-iceoryx/iceoryx/tree/v2.0.1) (2022-04-01)
4+
5+
[Full Changelog](https://github.com/eclipse-iceoryx/iceoryx/compare/v2.0.0...v2.0.1)
6+
7+
**Bugfixes:**
8+
9+
- CMake warning: empty command-line option [\#1311](https://github.com/eclipse-iceoryx/iceoryx/issues/1311) thanks to @clalancette
10+
- iox-#743 Fixes to make docs exportable [\#1289](https://github.com/eclipse-iceoryx/iceoryx/pull/1289)
11+
- Don't exclude implementations of public classes in Doxygen [\#1293](https://github.com/eclipse-iceoryx/iceoryx/issues/1293)

iceoryx_binding_c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# SPDX-License-Identifier: Apache-2.0
1717
cmake_minimum_required(VERSION 3.16)
1818

19-
set(IOX_VERSION_STRING "2.0.0")
19+
set(IOX_VERSION_STRING "2.0.1")
2020

2121

2222

iceoryx_binding_c/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>iceoryx_binding_c</name>
5-
<version>2.0.0</version>
5+
<version>2.0.1</version>
66
<description>Eclipse iceoryx inter-process-communication (IPC) middleware C-Language Binding</description>
77
<maintainer email="[email protected]">Eclipse Foundation, Inc.</maintainer>
88
<license>Apache 2.0</license>

iceoryx_dds/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# SPDX-License-Identifier: Apache-2.0
1717
cmake_minimum_required(VERSION 3.16)
1818

19-
set(IOX_VERSION_STRING "2.0.0")
19+
set(IOX_VERSION_STRING "2.0.1")
2020

2121
project(iceoryx_dds VERSION ${IOX_VERSION_STRING})
2222

iceoryx_hoofs/CMakeLists.txt

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

1818
cmake_minimum_required(VERSION 3.16)
1919

20-
set(IOX_VERSION_STRING "2.0.0")
20+
set(IOX_VERSION_STRING "2.0.1")
2121

2222
project(iceoryx_hoofs VERSION ${IOX_VERSION_STRING})
2323

iceoryx_hoofs/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>iceoryx_hoofs</name>
5-
<version>2.0.0</version>
5+
<version>2.0.1</version>
66
<description>Eclipse iceoryx inter-process-communication (IPC) middleware basic building blocks</description>
77
<maintainer email="[email protected]">Eclipse Foundation, Inc.</maintainer>
88
<license>Apache 2.0</license>

iceoryx_integrationtest/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>iceoryx_integrationtest</name>
5-
<version>2.0.0</version>
5+
<version>2.0.1</version>
66
<description>iceoryx Software Integrationtest</description>
77
<maintainer email="[email protected]">Eclipse Foundation, Inc.</maintainer>
88
<license>Apache 2.0</license>

0 commit comments

Comments
 (0)