Skip to content

Commit 1420296

Browse files
authored
cpp: bump to 2.1.3 (#1592)
Bump the C++ version to `2.1.3` in preparation for release. Signed-off-by: Chris Lalancette <chris.lalancette@foxglove.dev>
1 parent f2a70d6 commit 1420296

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ The version number is set at build time based on the tag.
6262
- cpp/build.sh
6363
- cpp/docs/conanfile.py
6464
- cpp/examples/conanfile.py
65+
- cpp/mcap/conanfile.py
6566
- cpp/mcap/include/mcap/types.hpp (`MCAP_LIBRARY_VERSION`)
66-
- cpp/mcap/include/conanfile.py
6767
- cpp/test/conanfile.py
6868
2. Tag a release matching the version number `releases/cpp/vX.Y.Z`
6969

cpp/bench/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class McapBenchmarksConan(ConanFile):
55
settings = "os", "compiler", "build_type", "arch"
66
generators = "cmake"
7-
requires = "benchmark/1.7.0", "mcap/2.1.2"
7+
requires = "benchmark/1.7.0", "mcap/2.1.3"
88

99
def build(self):
1010
cmake = CMake(self)

cpp/build-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
conan config init
66

7-
conan editable add ./mcap mcap/2.1.2
7+
conan editable add ./mcap mcap/2.1.3
88
conan install docs --install-folder docs/build/Release \
99
-s compiler.cppstd=17 -s build_type=Release --build missing
1010

cpp/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
conan config init
66

7-
conan editable add ./mcap mcap/2.1.2
7+
conan editable add ./mcap mcap/2.1.3
88
conan install test --install-folder test/build/Debug \
99
-s compiler.cppstd=17 -s build_type=Debug --build missing
1010

cpp/docs/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class McapDocsConan(ConanFile):
55
settings = "os", "compiler", "build_type", "arch"
66
generators = "cmake"
7-
requires = "mcap/2.1.2"
7+
requires = "mcap/2.1.3"
88

99
def build(self):
1010
cmake = CMake(self)

cpp/examples/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class McapExamplesConan(ConanFile):
55
settings = "os", "compiler", "build_type", "arch"
66
generators = "cmake"
77
requires = [
8-
"mcap/2.1.2",
8+
"mcap/2.1.3",
99
"protobuf/3.21.1",
1010
"nlohmann_json/3.10.5",
1111
"catch2/2.13.8",

cpp/mcap/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class McapConan(ConanFile):
55
name = "mcap"
6-
version = "2.1.2"
6+
version = "2.1.3"
77
url = "https://github.com/foxglove/mcap"
88
homepage = "https://github.com/foxglove/mcap"
99
description = "A C++ implementation of the MCAP file format"

cpp/mcap/include/mcap/types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
namespace mcap {
1616

17-
#define MCAP_LIBRARY_VERSION "2.1.2"
17+
#define MCAP_LIBRARY_VERSION "2.1.3"
1818

1919
using SchemaId = uint16_t;
2020
using ChannelId = uint16_t;

cpp/test/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class McapTestConan(ConanFile):
55
settings = "os", "compiler", "build_type", "arch"
66
generators = "cmake"
7-
requires = "catch2/2.13.8", "mcap/2.1.2", "nlohmann_json/3.10.5"
7+
requires = "catch2/2.13.8", "mcap/2.1.3", "nlohmann_json/3.10.5"
88

99
def build(self):
1010
cmake = CMake(self)

0 commit comments

Comments
 (0)