Skip to content

Commit 69ec978

Browse files
authored
Merge pull request #2283 from eclipse-iceoryx/iox-2282-prepare-v-2-0-6-release
iox-#2282 Prepare v2.0.6 release
2 parents 63db532 + 625b2d0 commit 69ec978

File tree

38 files changed

+62
-48
lines changed

38 files changed

+62
-48
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.5
1+
2.0.6

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.5")
17+
set(IOX_VERSION_STRING "2.0.6")
1818

1919
project(iceoryx_package VERSION ${IOX_VERSION_STRING})
2020

doc/aspice_swe3_4/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.5")
19+
set(IOX_VERSION_STRING "2.0.6")
2020

2121
project(iceoryx_doc VERSION ${IOX_VERSION_STRING})
2222

doc/website/release-notes/.pages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
nav:
2+
- iceoryx-v2-0.6.md
23
- iceoryx-v2-0-5.md
34
- iceoryx-v2-0-4.md
45
- iceoryx-v2-0-3.md

doc/website/release-notes/iceoryx-unreleased.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,20 @@
88

99
**Bugfixes:**
1010

11-
**Refactoring:**
11+
- Foo Bar [\#000](https://github.com/eclipse-iceoryx/iceoryx/issues/000)
1212

13-
- Patch cpptoml to use cmake 3.16 [#2011](https://github.com/eclipse-iceoryx/iceoryx/issues/2011)
14-
- Update github actions [#2011](https://github.com/eclipse-iceoryx/iceoryx/issues/2011)
13+
**Refactoring:**
1514

1615
**New API features:**
1716

1817
**API Breaking Changes:**
1918

19+
1. Some API change.
20+
21+
```cpp
22+
// before
23+
#include "old/include.hpp"
24+
25+
// after
26+
#include "new/include.hpp"
27+
```
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# iceoryx v2.0.6
2+
3+
## [v2.0.6](https://github.com/eclipse-iceoryx/iceoryx/tree/v2.0.6) (2024-04-26)
4+
5+
[Full Changelog](https://github.com/eclipse-iceoryx/iceoryx/compare/v2.0.5...v2.0.6)
6+
7+
**Refactoring:**
8+
9+
- Patch cpptoml to use cmake 3.16 [#2011](https://github.com/eclipse-iceoryx/iceoryx/issues/2011)
10+
- Update github actions [#2011](https://github.com/eclipse-iceoryx/iceoryx/issues/2011)
11+
- Remove warning in toml gateway config parser [#2266](https://github.com/eclipse-iceoryx/iceoryx/issues/2266)
12+
- Fix warnings on macOS [#2284](https://github.com/eclipse-iceoryx/iceoryx/issues/2266)

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.5")
19+
set(IOX_VERSION_STRING "2.0.6")
2020

2121

2222

iceoryx_binding_c/include/iceoryx_binding_c/runtime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ uint64_t iox_runtime_get_instance_name(char* const name, const uint64_t nameLeng
3535

3636
/// @brief initiates the shutdown of the runtime to unblock all potentially blocking producer
3737
/// with the iox_ConsumerTooSlowPolicy::ConsumerTooSlowPolicy_WAIT_FOR_CONSUMER option set
38-
void iox_runtime_shutdown();
38+
void iox_runtime_shutdown(void);
3939

4040
#endif

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.5</version>
5+
<version>2.0.6</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.5")
19+
set(IOX_VERSION_STRING "2.0.6")
2020

2121
project(iceoryx_dds VERSION ${IOX_VERSION_STRING})
2222

0 commit comments

Comments
 (0)