Skip to content

Commit 05e5016

Browse files
committed
Version 0.5.1
1 parent fa41afc commit 05e5016

File tree

21 files changed

+30
-20
lines changed

21 files changed

+30
-20
lines changed

CHANGELOG.md

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

3+
## [0.5.1] 2025-02-28
4+
5+
Fixes few bugs went unnoticed when releasing 0.5.0.
6+
7+
### Fixed
8+
9+
- Fixed typo in `plot_world`
10+
- Fixed notebook `running_an_experiment_no_hdf5.ipynb`
11+
- Fixed `LidarScan` import
12+
313
## [0.5.0] 2025-02-28
414

515
In this release we add support for multiple state estimations, something that previously had limited support through `SensorCombination` (limited to sensors and not exposed to samplers). We keep backward-compatibility in the API and YAML: we can still configure agents to use a single state estimation using the old API and keywords. Agents with multiple state estimations evaluate them in constant order: subsequent state estimations evaluations have access to the state written by the previous state estimations. For example, we can use this to add noise to an otherwise perfect sensor or to combine the perception of two sensors into an higher level state estimation, like `LocalGridMap` does with odometry and lidar scans.

distribution/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.17)
22

33
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.15)
44

5-
project(navground VERSION 0.5.0)
5+
project(navground VERSION 0.5.1)
66

77
if(NOT CMAKE_C_STANDARD)
88
set(CMAKE_C_STANDARD 99)

distribution/py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.17)
2-
project(navground_py VERSION 0.5.0)
2+
project(navground_py VERSION 0.5.1)
33

44
set(Python_FIND_VIRTUALENV FIRST)
55

distribution/py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ universal = false
6161

6262
[tool.setuptools-git-versioning]
6363
enabled = true
64-
starting_version = "0.5.0"
64+
starting_version = "0.5.1"
6565
# dirty_template = "{tag}-{ccount}+{branch}"

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = 'navground'
2020
copyright = '2023, Jérôme Guzzi, IDSIA'
2121
author = 'Jérôme Guzzi, IDSIA'
22-
release = '0.5.0'
22+
release = '0.5.1'
2323

2424
# -- General configuration ---------------------------------------------------
2525
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

navground_core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.11)
2-
project(navground_core VERSION 0.5.0)
2+
project(navground_core VERSION 0.5.1)
33

44
# Default to C99
55
if(NOT CMAKE_C_STANDARD)

navground_core/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>navground_core</name>
5-
<version>0.5.0</version>
5+
<version>0.5.1</version>
66
<description>
77
The navground core library
88
</description>

navground_core_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.11)
2-
project(navground_core_py VERSION 0.5.0)
2+
project(navground_core_py VERSION 0.5.1)
33

44
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/../cmake)
55

navground_core_py/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>navground_core_py</name>
5-
<version>0.5.0</version>
5+
<version>0.5.1</version>
66
<description>
77
The navground core library: python bindings and package
88
</description>

navground_demos/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>navground_demos</name>
5-
<version>0.5.0</version>
5+
<version>0.5.1</version>
66
<description>Several ways to implement a demo with two Thymios using navground </description>
77
<maintainer email="jerome@idsia.ch">Jerome Guzzi</maintainer>
88
<license>MIT</license>

0 commit comments

Comments
 (0)