Skip to content

Commit

Permalink
Change version to 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
javmorcas committed Sep 16, 2019
1 parent 8f7f2c6 commit a7a8334
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RTI Perftest 3.0 [<img alt="License" src="https://img.shields.io/badge/License-EPL%201.0-red.svg" align="right" />](https://opensource.org/licenses/EPL-1.0)
# RTI Perftest 3.0.1 [<img alt="License" src="https://img.shields.io/badge/License-EPL%201.0-red.svg" align="right" />](https://opensource.org/licenses/EPL-1.0)

RTI Perftest is a command-line application that measures the Latency and Throughput of very configurable scenarios that use RTI Connext DDS middleware to send messages.

Expand Down
2 changes: 1 addition & 1 deletion srcCpp/perftest_publisher.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bool perftest_cpp::_testCompleted = false;
bool perftest_cpp::_testCompleted_scan = true; // In order to enter into the scan mode
const int timeout_wait_for_ack_sec = 0;
const unsigned int timeout_wait_for_ack_nsec = 100000000;
const Perftest_ProductVersion_t perftest_cpp::_version = {3, 0, 0, 0};
const Perftest_ProductVersion_t perftest_cpp::_version = {3, 0, 1, 0};

/*
* PERFTEST-108
Expand Down
2 changes: 1 addition & 1 deletion srcCpp03/perftest_publisher.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RTI_UINT64 perftest_cpp::_Clock_usec = 0;

const long timeout_wait_for_ack_sec = 0;
const unsigned long timeout_wait_for_ack_nsec = 100000000;
const Perftest_ProductVersion_t perftest_cpp::_version = {3, 0, 0, 0};
const Perftest_ProductVersion_t perftest_cpp::_version = {3, 0, 1, 0};
ThreadPriorities _threadPriorities;

/*
Expand Down
2 changes: 1 addition & 1 deletion srcCs/perftest_publisher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2665,7 +2665,7 @@ public Perftest_ProductVersion_t (
public const int timeout_wait_for_ack_sec = 0;
public const uint timeout_wait_for_ack_nsec = 10000000;
public static readonly Perftest_ProductVersion_t _version =
new Perftest_ProductVersion_t(3, 0, 0, 0);
new Perftest_ProductVersion_t(3, 0, 1, 0);


/*
Expand Down
4 changes: 2 additions & 2 deletions srcDoc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = u'3.0'
version = u'3.0.1'
# The full version, including alpha/beta/rc tags.
release = u'3.0'
release = u'3.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions srcDoc/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ C++ (Traditional) API:
::

~/rtiperftest$ ./bin/x64Linux3gcc5.4.0/release/perftest_cpp -pub -executionTime 60 -noprint
RTI Perftest 3.0.0 (RTI Connext DDS 6.0.0)
RTI Perftest 3.0.1 (RTI Connext DDS 6.0.0)

Custom Type provided: 'Test'

Expand Down Expand Up @@ -1157,7 +1157,7 @@ C++ (Traditional) API:
::

~/rtiperftest$ ./bin/x64Linux3gcc5.4.0/release/perftest_cpp -sub -noprint
RTI Perftest 3.0.0 (RTI Connext DDS 6.0.0)
RTI Perftest 3.0.1 (RTI Connext DDS 6.0.0)

Custom Type provided: 'Test'

Expand Down Expand Up @@ -1187,7 +1187,7 @@ C++ (Traditional) API:
::

~/rtiperftest$ ./bin/x64Linux3gcc5.4.0/release/perftest_cpp -pub -executionTime 60 -noprint -dynamicData
RTI Perftest 3.0.0 (RTI Connext DDS 6.0.0)
RTI Perftest 3.0.1 (RTI Connext DDS 6.0.0)

Custom Type provided: 'Test'

Expand Down Expand Up @@ -1228,7 +1228,7 @@ C++ (Traditional) API:
::

~/rtiperftest$ ./bin/x64Linux3gcc5.4.0/release/perftest_cpp -sub -noprint -dynamicData
RTI Perftest 3.0.0 (RTI Connext DDS 6.0.0)
RTI Perftest 3.0.1 (RTI Connext DDS 6.0.0)

Custom Type provided: 'Test'

Expand Down
24 changes: 24 additions & 0 deletions srcDoc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,30 @@ releases:
supported. You can disable this by adding the ``--skip-cs-build``
flag.

Release Notes 3.0.1
-------------------

What's Fixed in 3.0.1
~~~~~~~~~~~~~~~~~~~~~

Fix Custom Types failure due to the use of Flat Data (#221)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Custom Types implementation was incomplete for FlatData types causing compilation
errors when trying to use the feature.

This issue has been fixed and FlatData custom types can be used along with
regular custom types by using the new ``--customTypeFlatdata`` build option.

The only known limitation is that these FlatData types must be declared as mutable.

Improve message when NDDSHOME/RTIMEHOME paths are not reachable (#222)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

*RTI Perftest* has improved the error message when the path provided to the
`NDDSHOME` or `RTIMEHOME` are incorrect. In previous releases this could be
misleading since it would claim that the path was not provided.

Release Notes 3.0
-----------------

Expand Down
2 changes: 1 addition & 1 deletion srcJava/com/rti/perftest/ddsimpl/PerftestVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public final class PerftestVersion {
private final ProductVersion_t _productVersion;

private PerftestVersion() {
_productVersion = new ProductVersion_t(new int[] { 3, 0, 0, 0 });
_productVersion = new ProductVersion_t(new int[] { 3, 0, 1, 0 });
}

public static PerftestVersion getInstance() {
Expand Down

0 comments on commit a7a8334

Please sign in to comment.