Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.0"
".": "0.6.0"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.6.0](https://github.com/contagon/evalio/compare/v0.5.0...v0.6.0) (2026-08-05)


### ⚠ BREAKING CHANGES

* Bump Pipelines ([#81](https://github.com/contagon/evalio/issues/81))

### Features

* Add small new constructor for LidarMeasurement ([#78](https://github.com/contagon/evalio/issues/78)) ([39eb11c](https://github.com/contagon/evalio/commit/39eb11c143514a0c3ce1d0dca7e2cf88c301ea0e))
* Bump Pipelines ([#81](https://github.com/contagon/evalio/issues/81)) ([24071ec](https://github.com/contagon/evalio/commit/24071ec9184669d5d03b7d72ba028cc2c78f5851))
* Bump python & CI deps, basedpyright -> pyrefly ([#83](https://github.com/contagon/evalio/issues/83)) ([334875b](https://github.com/contagon/evalio/commit/334875bd7921a81cacb728cc92e49603e4e23f7f))
* Handle missing ground truth in dataset ([#79](https://github.com/contagon/evalio/issues/79)) ([7367264](https://github.com/contagon/evalio/commit/736726499f14b7487299e7fc877ed5adfb4ed6f8))
* vcpkg bump ([#84](https://github.com/contagon/evalio/issues/84)) ([1f15c61](https://github.com/contagon/evalio/commit/1f15c6136b5aac8303ac7f09bf9f225bcedca824))


### Bug Fixes

* handle subnanosecond in csv file loading ([#85](https://github.com/contagon/evalio/issues/85)) ([4ca115e](https://github.com/contagon/evalio/commit/4ca115e03cca57e3298a6e30e978ee066be733c3))
* Ruff linting updates ([#82](https://github.com/contagon/evalio/issues/82)) ([2b624d4](https://github.com/contagon/evalio/commit/2b624d4b0e4fa39308adf52106aa64a135daa8ed))

## [0.5.0](https://github.com/contagon/evalio/compare/v0.4.2...v0.5.0) (2026-04-10)


Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif()

# ------------------------- Basics ------------------------- #
cmake_minimum_required(VERSION 3.24)
project(EVALIO VERSION 0.5.0 LANGUAGES CXX) # x-release-please-version
project(EVALIO VERSION 0.6.0 LANGUAGES CXX) # x-release-please-version

# Enforce C++17 for std::variant amongst others
set(CMAKE_CXX_STANDARD 20)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "evalio"
authors = [{ name = "Easton Potokar", email = "contagon6@gmail.com" }]
maintainers = [{ name = "Easton Potokar", email = "contagon6@gmail.com" }]
version = "0.5.0"
version = "0.6.0"
description = "Evaluate Lidar-Inertial Odometry on public datasets"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion python/evalio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _register_custom_modules(module_name: str):
_register_custom_modules(module_name)


__version__ = "0.5.0" # x-release-please-version
__version__ = "0.6.0" # x-release-please-version
__all__ = [
"__version__",
"_abi_tag",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
]
},
"name": "evalio",
"version": "0.5.0",
"version": "0.6.0",
"dependencies": [
"ceres",
"eigen3",
Expand Down
Loading