diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 473100b9..bbdd4a30 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -24,7 +24,7 @@ jobs: env: OUTPUT: CHANGELOG.md - name: Commit changelog - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "chore(changelog): update changelog to newest version" file_pattern: CHANGELOG.md diff --git a/README.md b/README.md index 8b5ae261..62ddb2a8 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ [![License](https://img.shields.io/badge/Licence-Eclipse%20Public%20License%202.0-lightgrey)](https://opensource.org/licenses/EPL-2.0) [![Platforms](https://img.shields.io/badge/Platforms-win64%20linux64%20osx64-lightgrey)]() [![Supported python version](https://img.shields.io/pypi/pyversions/pykiso)]() -[![Build status](https://img.shields.io/github/actions/workflow/status/eclipse-kiso-testing/kiso-testing/verification_validation.yml)] +![Build status](https://img.shields.io/github/actions/workflow/status/eclipse-kiso-testing/kiso-testing/verification_validation.yml) [![Documentation Status](https://readthedocs.org/projects/kiso-testing/badge/?version=latest)](https://kiso-testing.readthedocs.io/en/latest/?badge=latest) -[![codecov](https://codecov.io/gh/eclipse/kiso-testing/branch/master/graph/badge.svg?token=IBKQ700ABS)](https://codecov.io/gh/eclipse-kiso-testing/kiso-testing) +[![codecov](https://codecov.io/gh/eclipse-kiso-testing/kiso-testing/graph/badge.svg?token=IBKQ700ABS)](https://codecov.io/gh/eclipse-kiso-testing/kiso-testing) [![CodeFactor](https://www.codefactor.io/repository/github/eclipse/kiso-testing/badge)](https://www.codefactor.io/repository/github/eclipse/kiso-testing) [![Last commit](https://img.shields.io/github/last-commit/eclipse/kiso-testing)]() [![Commits since latest version](https://img.shields.io/github/commits-since/eclipse/kiso-testing/latest/master)]() diff --git a/docs/whats_new/index.rst b/docs/whats_new/index.rst index 9841490a..8b09732c 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_1_2_0 version_0_29_0 version_0_28_0 version_0_27_0 diff --git a/docs/whats_new/version_1_2_0.rst b/docs/whats_new/version_1_2_0.rst new file mode 100644 index 00000000..098223eb --- /dev/null +++ b/docs/whats_new/version_1_2_0.rst @@ -0,0 +1,38 @@ +Version 1.2.0 +------------- + +Channel auto-open +^^^^^^^^^^^^^^^^^ + +Add auto-open option for channels. +If used, this option open the channel after the auxiliary auto-start. + + +PCAN Connector +^^^^^^^^^^^^^^ + +By default the CCPCanCan will use the trace size define in during the initialisation. + +The log path is now initialise if set at None. + + +Results can be exported to Xray +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +see :ref:`xray` + +pykiso modules detachment +^^^^^^^^^^^^^^^^^^^^^^^^^ + +The pykiso modules are now detached from the main testing framework. +This enable users to define their hw setup and load it in python. The auxiliaries +can now be used in a more flexible way in python. +See :ref:`pykiso_as_simulator` for more details. + +pykiso modules exposition +^^^^^^^^^^^^^^^^^^^^^^^^^ + +The pykiso modules can now be exposed via interfaces. +The first implemented interface is REST based. +This is an experimental feature. +See :ref:`pykiso_exposed` for more details. diff --git a/docs/whats_new/version_ongoing.rst b/docs/whats_new/version_ongoing.rst index 0db70888..1e80faf4 100644 --- a/docs/whats_new/version_ongoing.rst +++ b/docs/whats_new/version_ongoing.rst @@ -1,38 +1,2 @@ Version ongoing --------------- - -Channel auto-open -^^^^^^^^^^^^^^^^^ - -Add auto-open option for channels. -If used, this option open the channel after the auxiliary auto-start. - - -PCAN Connector -^^^^^^^^^^^^^^ - -By default the CCPCanCan will use the trace size define in during the initialisation. - -The log path is now initialise if set at None. - - -Results can be exported to Xray -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - -see :ref:`xray` - -pykiso modules detachment -^^^^^^^^^^^^^^^^^^^^^^^^^ - -The pykiso modules are now detached from the main testing framework. -This enable users to define their hw setup and load it in python. The auxiliaries -can now be used in a more flexible way in python. -See :ref:`pykiso_as_simulator` for more details. - -pykiso modules exposition -^^^^^^^^^^^^^^^^^^^^^^^^^ - -The pykiso modules can now be exposed via interfaces. -The first implemented interface is REST based. -This is an experimental feature. -See :ref:`pykiso_exposed` for more details. diff --git a/pyproject.toml b/pyproject.toml index 7c8ee674..f2a358ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pykiso" -version = "1.1.3" +version = "1.2.0" description = "Embedded integration testing framework." authors = ["Sebastian Fischer "] license = "Eclipse Public License - v 2.0"