Skip to content

Commit 4aea4ff

Browse files
committed
chore(main): release 0.5.1
1 parent 7367264 commit 4aea4ff

6 files changed

Lines changed: 13 additions & 5 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.0"
2+
".": "0.5.1"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.5.1](https://github.com/contagon/evalio/compare/v0.5.0...v0.5.1) (2026-05-08)
4+
5+
6+
### Features
7+
8+
* Add small new constructor for LidarMeasurement ([#78](https://github.com/contagon/evalio/issues/78)) ([39eb11c](https://github.com/contagon/evalio/commit/39eb11c143514a0c3ce1d0dca7e2cf88c301ea0e))
9+
* Handle missing ground truth in dataset ([#79](https://github.com/contagon/evalio/issues/79)) ([7367264](https://github.com/contagon/evalio/commit/736726499f14b7487299e7fc877ed5adfb4ed6f8))
10+
311
## [0.5.0](https://github.com/contagon/evalio/compare/v0.4.2...v0.5.0) (2026-04-10)
412

513

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ endif()
77

88
# ------------------------- Basics ------------------------- #
99
cmake_minimum_required(VERSION 3.24)
10-
project(EVALIO VERSION 0.5.0 LANGUAGES CXX) # x-release-please-version
10+
project(EVALIO VERSION 0.5.1 LANGUAGES CXX) # x-release-please-version
1111

1212
# Enforce C++17 for std::variant amongst others
1313
set(CMAKE_CXX_STANDARD 20)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "evalio"
33
authors = [{ name = "Easton Potokar", email = "contagon6@gmail.com" }]
44
maintainers = [{ name = "Easton Potokar", email = "contagon6@gmail.com" }]
5-
version = "0.5.0"
5+
version = "0.5.1"
66
description = "Evaluate Lidar-Inertial Odometry on public datasets"
77
readme = "README.md"
88
requires-python = ">=3.11"

python/evalio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _register_custom_modules(module_name: str):
5555
_register_custom_modules(module_name)
5656

5757

58-
__version__ = "0.5.0" # x-release-please-version
58+
__version__ = "0.5.1" # x-release-please-version
5959
__all__ = [
6060
"_abi_tag",
6161
"datasets",

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
]
1515
},
1616
"name": "evalio",
17-
"version": "0.5.0",
17+
"version": "0.5.1",
1818
"dependencies": [
1919
"ceres",
2020
"eigen3",

0 commit comments

Comments
 (0)