Skip to content

Commit c38c108

Browse files
committed
chore(main): release 0.4.3
1 parent 9f9859d commit c38c108

File tree

6 files changed

+17
-5
lines changed

6 files changed

+17
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.2"
2+
".": "0.4.3"
33
}

CHANGELOG.md

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

3+
## [0.4.3](https://github.com/contagon/evalio/compare/v0.4.2...v0.4.3) (2025-11-03)
4+
5+
6+
### Features
7+
8+
* **ds:** Add in IMU rates to ImuParams ([#64](https://github.com/contagon/evalio/issues/64)) ([9f9859d](https://github.com/contagon/evalio/commit/9f9859d279ab85212c2148430485c9c381721f05))
9+
10+
11+
### Bug Fixes
12+
13+
* **ci:** Fix uploading assets to github releases ([5b9f49e](https://github.com/contagon/evalio/commit/5b9f49ee0576c1514775490c8bad6ec99a2c8239))
14+
315
## [0.4.2](https://github.com/contagon/evalio/compare/v0.4.1...v0.4.2) (2025-10-31)
416

517

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.4.2 LANGUAGES CXX) # x-release-please-version
10+
project(EVALIO VERSION 0.4.3 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 = "[email protected]" }]
44
maintainers = [{ name = "Easton Potokar", email = "[email protected]" }]
5-
version = "0.4.2"
5+
version = "0.4.3"
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.4.2" # x-release-please-version
58+
__version__ = "0.4.3" # 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.4.2",
17+
"version": "0.4.3",
1818
"dependencies": [
1919
"ceres",
2020
"eigen3",

0 commit comments

Comments
 (0)