Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhhughes committed Jul 25, 2024
1 parent 291b003 commit 421425c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.14)
project(spark_dsg VERSION 1.0.4)
project(spark_dsg VERSION 1.0.5)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>spark_dsg</name>
<version>1.0.2</version>
<version>1.0.5</version>
<description>Dynamic Scene Graph (DSG) type definitions and core library code</description>

<author email="[email protected]">Nathan Hughes</author>
Expand Down
2 changes: 1 addition & 1 deletion src/node_attributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ void SemanticNodeAttributes::serialization_info() {
}
serialization::field("bounding_box", bounding_box);
serialization::field("semantic_label", semantic_label);
if (header.version < io::Version(1, 0, 4)) {
if (header.version <= io::Version(1, 0, 4)) {
Eigen::MatrixXd feature;
serialization::field("semantic_feature", feature);
semantic_feature = feature.cast<float>();
Expand Down

0 comments on commit 421425c

Please sign in to comment.