diff --git a/CHANGELOG.md b/CHANGELOG.md index e0e1286..fbe65b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (+ the Migration Guide section), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# [2.6.0] - 31.10.2024 + +- Added the option to control the initial figure size of the interactive plot. This should help resolve [#24](https://github.com/mad-lab-fau/imucal/issues/24) + # [2.5.0] - 31.10.2024 - Tooling overhaul to make the development process easier and fix doc building issues diff --git a/imucal/__init__.py b/imucal/__init__.py index 2a568f2..d4528c0 100644 --- a/imucal/__init__.py +++ b/imucal/__init__.py @@ -11,7 +11,7 @@ ) from imucal.ferraris_calibration_info import FerrarisCalibrationInfo, TurntableCalibrationInfo -__version__ = "2.5.0" +__version__ = "2.6.0" __all__ = [ "CalibrationInfo", diff --git a/pyproject.toml b/pyproject.toml index 39388f1..3b9113e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "imucal" -version = "2.5.0" +version = "2.6.0" description = "A Python library to calibrate 6 DOF IMUs" authors = [ "Arne Küderle ",