From 52bc82a7920d25f033d70b85f32da7209c9a6d3b Mon Sep 17 00:00:00 2001 From: Jacob Bandes-Storch Date: Mon, 9 Dec 2024 17:58:48 -0800 Subject: [PATCH] Bump cpp to v1.4.0 (#896) Bumping version number iirc this doesn't actually matter since these files are not exported, but good to have it match the tagged version --- cpp/examples/conanfile.py | 4 ++-- cpp/foxglove-websocket/conanfile.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp/examples/conanfile.py b/cpp/examples/conanfile.py index 7337f877..6ab8b26b 100644 --- a/cpp/examples/conanfile.py +++ b/cpp/examples/conanfile.py @@ -4,7 +4,7 @@ class FoxgloveWebSocketExamplesConan(ConanFile): name = "foxglove-websocket-example" - version = "1.1.0" + version = "1.4.0" settings = "os", "compiler", "build_type", "arch" exports_sources = "CMakeLists.txt", "src/*", "proto/*" generators = "CMakeDeps" @@ -12,7 +12,7 @@ class FoxgloveWebSocketExamplesConan(ConanFile): def requirements(self): self.requires("flatbuffers/23.5.26") self.requires("foxglove-schemas-protobuf/0.1.0") - self.requires("foxglove-websocket/1.1.0") + self.requires("foxglove-websocket/1.4.0") self.requires("zlib/1.2.13") self.requires("boost/1.83.0", transitive_headers=True) diff --git a/cpp/foxglove-websocket/conanfile.py b/cpp/foxglove-websocket/conanfile.py index 1d64afec..c427863b 100644 --- a/cpp/foxglove-websocket/conanfile.py +++ b/cpp/foxglove-websocket/conanfile.py @@ -5,7 +5,7 @@ class FoxgloveWebSocketConan(ConanFile): name = "foxglove-websocket" - version = "1.1.0" + version = "1.4.0" url = "https://github.com/foxglove/ws-protocol" homepage = "https://github.com/foxglove/ws-protocol" description = "A C++ server implementation of the Foxglove WebSocket Protocol"