Skip to content

Commit 43b1159

Browse files
chore(mcap-loader): bump version to 1.0.9 (#13)
Update version string in all 4 required locations: - manifest.json - PluginEntry.cpp (getMetadata) - McapLoader.cpp (getVersion) - test_mcap_loader.cpp (version assertion)
1 parent fd152f9 commit 43b1159

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

extensions/mcap-loader/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "mcap-loader",
33
"name": "MCAP Loader",
44
"description": "Opens MCAP files and lists available channels",
5-
"version": "1.0.8",
5+
"version": "1.0.9",
66
"category": "data_loader",
77
"min_plotjuggler_version": "4.0.0"
88
}

extensions/mcap-loader/src/McapLoader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace PluginSystem {
55
McapLoader::McapLoader() {}
66
McapLoader::~McapLoader() {}
77
std::string McapLoader::getName() const { return "MCAP Loader"; }
8-
std::string McapLoader::getVersion() const { return "1.0.0"; }
8+
std::string McapLoader::getVersion() const { return "1.0.9"; }
99

1010
bool McapLoader::open(const std::string& filepath) {
1111
if (filepath.empty()) return false;

extensions/mcap-loader/src/PluginEntry.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const char* getMetadata() {
1010
return R"({
1111
"id": "mcap-loader",
1212
"name": "MCAP Loader",
13-
"version": "1.0.0",
13+
"version": "1.0.9",
1414
"description": "Opens MCAP files and lists available channels",
1515
"category": "data_loader",
1616
"min_plotjuggler_version": "4.0.0"

extensions/mcap-loader/test/test_mcap_loader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
using namespace PluginSystem;
55

66
TEST(McapLoaderTest, GetName) { McapLoader p; EXPECT_EQ(p.getName(), "MCAP Loader"); }
7-
TEST(McapLoaderTest, GetVersion) { McapLoader p; EXPECT_EQ(p.getVersion(), "1.0.0"); }
7+
TEST(McapLoaderTest, GetVersion) { McapLoader p; EXPECT_EQ(p.getVersion(), "1.0.9"); }
88
TEST(McapLoaderTest, OpenEmpty) { McapLoader p; EXPECT_FALSE(p.open("")); }
99
TEST(McapLoaderTest, OpenFile) { McapLoader p; EXPECT_TRUE(p.open("log.mcap")); EXPECT_FALSE(p.getChannels().empty()); }

0 commit comments

Comments
 (0)