diff --git a/CHANGELOG.md b/CHANGELOG.md index 74bdc8a..5199c52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/). +## [0.1.4](https://github.com/vtz/opensomeip-python/releases/tag/v0.1.4) - 2026-04-18 + +### Features + +- Add optional `remote_endpoint` field to `ClientConfig`, enabling + communication with SOME/IP servers that do not run Service Discovery. + The transport layer already supported static remote endpoints — this + wires the option through the high-level client configuration. + +### Miscellaneous + +- Bump `softprops/action-gh-release` from 2 to 3. +- Bump `actions/github-script` from 8 to 9. +- Bump `codecov/codecov-action` from 5 to 6. +- Update opensomeip C++ submodule to v0.0.5. + ## [0.1.3](https://github.com/vtz/opensomeip-python/releases/tag/v0.1.3) - 2026-03-30 ### Miscellaneous diff --git a/pyproject.toml b/pyproject.toml index 8865aa7..7fc369d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "opensomeip" -version = "0.1.3" +version = "0.1.4" description = "Python bindings for the opensomeip C++ SOME/IP stack" readme = "README.md" license = "Apache-2.0" @@ -58,7 +58,7 @@ wheel.packages = ["src/opensomeip"] cmake.build-type = "Release" [tool.scikit-build.cmake.define] -OPENSOMEIP_PYTHON_VERSION = "0.1.3" +OPENSOMEIP_PYTHON_VERSION = "0.1.4" [tool.pytest.ini_options] testpaths = ["tests"] @@ -145,4 +145,4 @@ name = "Miscellaneous" showcontent = false [tool.opensomeip] -opensomeip-version = "0.1.3" +opensomeip-version = "0.0.5" diff --git a/src/opensomeip/_version.py b/src/opensomeip/_version.py index 485f44a..bbab024 100644 --- a/src/opensomeip/_version.py +++ b/src/opensomeip/_version.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.1.4"