diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c7b50..e85e7bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v0.7.10] - 10-09-2025 + +### Fixed + +- Updated the orca core version + ## [v0.7.8] - 10-09-2025 ### Fixed @@ -112,7 +118,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed -[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.8...HEAD +[unreleased]: https://github.com/Predixus/Orca/compare/v0.7.11...HEAD +[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.10...v0.7.11 +[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.9...v0.7.10 +[v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.8...v0.7.9 [v0.7.8]: https://github.com/Predixus/Orca/compare/v0.7.7...v0.7.8 [v0.7.7]: https://github.com/Predixus/Orca/compare/v0.7.6...v0.7.7 [v0.7.6]: https://github.com/Predixus/Orca/compare/v0.7.5...v0.7.6 diff --git a/orca b/orca index 5b994ce..33369bd 160000 --- a/orca +++ b/orca @@ -1 +1 @@ -Subproject commit 5b994ce7dd2cf30cb657c628af5815a88416259a +Subproject commit 33369bd4e916b3583d9e5f8fbaa1f15330a53522 diff --git a/orca_python/main.py b/orca_python/main.py index 3a5e3e1..6335b4f 100644 --- a/orca_python/main.py +++ b/orca_python/main.py @@ -214,13 +214,13 @@ def EmitWindow(window: Window) -> None: with grpc.secure_channel( envs.ORCASERVER, grpc.ssl_channel_credentials() ) as channel: - stub = service_pb2_grpc.OrcaCore(channel) + stub = service_pb2_grpc.OrcaCoreStub(channel) response = stub.EmitWindow(window_pb) LOGGER.info(f"Window emitted: {response}") else: # insecure channel for local development with grpc.insecure_channel(envs.ORCASERVER) as channel: - stub = service_pb2_grpc.OrcaCore(channel) + stub = service_pb2_grpc.OrcaCoreStub(channel) response = stub.EmitWindow(window_pb) LOGGER.info(f"Window emitted: {response}") @@ -656,13 +656,13 @@ def Register(self) -> None: with grpc.secure_channel( envs.ORCASERVER, grpc.ssl_channel_credentials() ) as channel: - stub = service_pb2_grpc.OrcaCore(channel) + stub = service_pb2_grpc.OrcaCoreStub(channel) response = stub.RegisterProcessor(registration_request) LOGGER.info(f"Algorithm registration response received: {response}") else: # insecure channel for local development with grpc.insecure_channel(envs.ORCASERVER) as channel: - stub = service_pb2_grpc.OrcaCore(channel) + stub = service_pb2_grpc.OrcaCoreStub(channel) response = stub.RegisterProcessor(registration_request) LOGGER.info(f"Algorithm registration response received: {response}") diff --git a/pyproject.toml b/pyproject.toml index 6062720..b173be7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "orca-python" -version = "0.7.8" +version = "0.7.11" description = "Python SDK for the Predixus Orca product" authors = [ "Frederick Mannings "