Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

<!-- towncrier release notes start -->

## [0.1.5](https://github.com/vtz/opensomeip-python/releases/tag/v0.1.5) - 2026-04-22

### Bug Fixes

- Operations that require the native C++ extension (RPC calls, transport send,
event subscriptions) now raise clear errors (`RpcError`, `TransportError`,
`RuntimeError`) instead of silently returning empty/fake responses or dropping
messages when the extension is unavailable. (Fixes #17)

### Documentation

- Add "Verify native extension" subsection to the README after Installation.
- Update the Troubleshooting section to describe the new error-raising behavior.

### Miscellaneous

- Update opensomeip C++ submodule to latest main (`85b4c91`).

## [0.1.4](https://github.com/vtz/opensomeip-python/releases/tag/v0.1.4) - 2026-04-18

### Features
Expand Down
2 changes: 1 addition & 1 deletion extern/opensomeip
Submodule opensomeip updated 124 files
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "opensomeip"
version = "0.1.4"
version = "0.1.5"
description = "Python bindings for the opensomeip C++ SOME/IP stack"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -58,7 +58,7 @@ wheel.packages = ["src/opensomeip"]
cmake.build-type = "Release"

[tool.scikit-build.cmake.define]
OPENSOMEIP_PYTHON_VERSION = "0.1.4"
OPENSOMEIP_PYTHON_VERSION = "0.1.5"

[tool.pytest.ini_options]
testpaths = ["tests"]
Expand Down