From 520ebb4975f84e7565a47e3e7f2a06ba916599a5 Mon Sep 17 00:00:00 2001 From: danipiza Date: Thu, 20 Aug 2026 13:55:21 +0200 Subject: [PATCH] Refs #25573: Bump version to 3.5.3 Signed-off-by: danipiza --- VERSION | 2 +- ddsrouter_core/package.xml | 2 +- ddsrouter_test/package.xml | 2 +- ddsrouter_yaml/package.xml | 2 +- docs/package.xml | 2 +- docs/rst/notes/notes.rst | 20 +++------- docs/rst/notes/previous_versions/v3.5.2.rst | 41 +++++++++++++++++++++ docs/rst/user_manual/configuration.rst | 2 +- tools/ddsrouter_tool/package.xml | 2 +- 9 files changed, 54 insertions(+), 21 deletions(-) create mode 100644 docs/rst/notes/previous_versions/v3.5.2.rst diff --git a/VERSION b/VERSION index ecd698a9c..e22b851c8 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ VERSION_MAJOR 3 VERSION_MINOR 5 -VERSION_PATCH 2 +VERSION_PATCH 3 diff --git a/ddsrouter_core/package.xml b/ddsrouter_core/package.xml index 6f6a543ee..edda84521 100644 --- a/ddsrouter_core/package.xml +++ b/ddsrouter_core/package.xml @@ -2,7 +2,7 @@ ddsrouter_core - 3.5.2 + 3.5.3 *eprosima DDS Router* C++ library to communicate isolated DDS networks between each other. Use in isolated machines an WAN scenarios. diff --git a/ddsrouter_test/package.xml b/ddsrouter_test/package.xml index d360f7d72..15366b2d1 100644 --- a/ddsrouter_test/package.xml +++ b/ddsrouter_test/package.xml @@ -2,7 +2,7 @@ ddsrouter_test - 3.5.2 + 3.5.3 *eprosima DDS Router* tests. diff --git a/ddsrouter_yaml/package.xml b/ddsrouter_yaml/package.xml index 23abba04c..7e99379e8 100644 --- a/ddsrouter_yaml/package.xml +++ b/ddsrouter_yaml/package.xml @@ -2,7 +2,7 @@ ddsrouter_yaml - 3.5.2 + 3.5.3 *eprosima DDS Router* C++ library to communicate isolated DDS networks between each other. Use in isolated machines an WAN scenarios. diff --git a/docs/package.xml b/docs/package.xml index 5ba043261..669f1b174 100644 --- a/docs/package.xml +++ b/docs/package.xml @@ -2,7 +2,7 @@ ddsrouter_docs - 3.5.2 + 3.5.3 *eprosima DDS Router* Documentation built with sphinx and deployed in ReadTheDocs. diff --git a/docs/rst/notes/notes.rst b/docs/rst/notes/notes.rst index ee0be558e..78b6a04cf 100644 --- a/docs/rst/notes/notes.rst +++ b/docs/rst/notes/notes.rst @@ -5,18 +5,9 @@ .. include:: forthcoming_version.rst ############## -Version v3.5.2 +Version v3.5.3 ############## -This release includes the following **features**: - -* Add a native C++ YAML validator with JSON schema to ``ddsrouter_yaml``, replacing the old Python validator - -This release includes the following **improvements**: - -* Add regression tests for the DDS-Pipe Dispose fix in the DDS Router repeater -* Remove unused ``FileWatch`` header - This release includes the following **Dependencies Update**: .. list-table:: @@ -32,25 +23,26 @@ This release includes the following **Dependencies Update**: - `v1.4.1 `__ * - Fast CDR - `eProsima/Fast-CDR `__ - - `v2.3.5 `__ + - `v2.3.6 `__ - `v2.3.6 `__ * - Fast DDS - `eProsima/Fast-DDS `__ - - `v3.6.1 `__ + - `v3.6.2 `__ - `v3.6.2 `__ * - Dev Utils - `eProsima/dev-utils `__ - - `v1.5.1 `__ + - `v1.5.3 `__ - `v1.5.3 `__ * - DDS Pipe - `eProsima/DDS-Pipe `__ - - `v1.5.1 `__ - `v1.5.2 `__ + - `v1.5.3 `__ ################# Previous Versions ################# +.. include:: previous_versions/v3.5.2.rst .. include:: previous_versions/v3.5.1.rst .. include:: previous_versions/v3.5.0.rst .. include:: previous_versions/v3.4.0.rst diff --git a/docs/rst/notes/previous_versions/v3.5.2.rst b/docs/rst/notes/previous_versions/v3.5.2.rst new file mode 100644 index 000000000..e97ae5d23 --- /dev/null +++ b/docs/rst/notes/previous_versions/v3.5.2.rst @@ -0,0 +1,41 @@ +Version v3.5.2 +============== + +This release includes the following **features**: + +* Add a native C++ YAML validator with JSON schema to ``ddsrouter_yaml``, replacing the old Python validator + +This release includes the following **improvements**: + +* Add regression tests for the DDS-Pipe Dispose fix in the DDS Router repeater +* Remove unused ``FileWatch`` header + +This release includes the following **Dependencies Update**: + +.. list-table:: + :header-rows: 1 + + * - + - Repository + - Old Version + - New Version + * - Foonathan Memory Vendor + - `eProsima/foonathan_memory_vendor `__ + - `v1.4.1 `__ + - `v1.4.1 `__ + * - Fast CDR + - `eProsima/Fast-CDR `__ + - `v2.3.5 `__ + - `v2.3.6 `__ + * - Fast DDS + - `eProsima/Fast-DDS `__ + - `v3.6.1 `__ + - `v3.6.2 `__ + * - Dev Utils + - `eProsima/dev-utils `__ + - `v1.5.1 `__ + - `v1.5.3 `__ + * - DDS Pipe + - `eProsima/DDS-Pipe `__ + - `v1.5.1 `__ + - `v1.5.2 `__ diff --git a/docs/rst/user_manual/configuration.rst b/docs/rst/user_manual/configuration.rst index c1709f765..0f8f71853 100644 --- a/docs/rst/user_manual/configuration.rst +++ b/docs/rst/user_manual/configuration.rst @@ -27,7 +27,7 @@ This value allows users to keep using the same YAML file with an old configurati * - version 4.0 - ``v4.0`` - - *v3.5.2* + - *v3.5.3* **The current configuration version is v5.0**. diff --git a/tools/ddsrouter_tool/package.xml b/tools/ddsrouter_tool/package.xml index 293221bb0..46b60ef2e 100644 --- a/tools/ddsrouter_tool/package.xml +++ b/tools/ddsrouter_tool/package.xml @@ -2,7 +2,7 @@ ddsrouter_tool - 3.5.2 + 3.5.3 *eprosima DDS Router* Application to execute a DDS Router from a YAML configuration file.