Skip to content

Commit

Permalink
Bump cpp to v1.4.0 (#896)
Browse files Browse the repository at this point in the history
Bumping version number

iirc this doesn't actually matter since these files are not exported,
but good to have it match the tagged version
  • Loading branch information
jtbandes authored Dec 10, 2024
1 parent ce56725 commit 52bc82a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cpp/examples/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

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"

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)

Expand Down
2 changes: 1 addition & 1 deletion cpp/foxglove-websocket/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 52bc82a

Please sign in to comment.