diff --git a/docs/whats_new/index.rst b/docs/whats_new/index.rst index e07c8562..9841490a 100644 --- a/docs/whats_new/index.rst +++ b/docs/whats_new/index.rst @@ -4,6 +4,7 @@ What's New In Pykiso? .. toctree:: version_ongoing + version_0_29_0 version_0_28_0 version_0_27_0 version_0_26_0 diff --git a/docs/whats_new/version_0_29_0.rst b/docs/whats_new/version_0_29_0.rst new file mode 100644 index 00000000..c68c8096 --- /dev/null +++ b/docs/whats_new/version_0_29_0.rst @@ -0,0 +1,25 @@ +Version 0.29.0 +-------------- + +Pykiso execution +^^^^^^^^^^^^^^^^ + +Should Pykiso terminate while some threads remain active, these threads will be forcibly shut down. +Any unresolved threads will be reported on stdout at the end. + +CAN Auxiliary +^^^^^^^^^^^^^ +The CanAuxiliary offer a context manager that can be used to collect all messages received while +the context manager is used. + +PCAN Connector +^^^^^^^^^^^^^^ + +By default the CCPCanCan will create one trace file for all the test executed when the command `pykiso -c` +is executed. + +The logging can be deactivated by passing the parameter `logging_activated` to False in the configuration of the connector. + +The strategy for the creation of the trace file can also be modified to create trace file for every test run or +for every testCase run, by adding in the configuration of the CCPCanCan the parameter strategy_trc_file +that take two possible values : "testRun" or "testCase". diff --git a/pyproject.toml b/pyproject.toml index 2f6dd279..f055f79a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pykiso" -version = "0.28.1" +version = "0.29.0" description = "Embedded integration testing framework." authors = ["Sebastian Fischer "] license = "Eclipse Public License - v 2.0"