From 9f3f1a877ee3b96c776e4551e930eabd8afc2247 Mon Sep 17 00:00:00 2001 From: Jorge Morgado Date: Thu, 17 Jun 2021 19:30:14 -0400 Subject: [PATCH] Set version --- CHANGELOG.md | 19 +++++++++++++++++++ docs/source/conf.py | 2 +- pyproject.toml | 2 +- yupi/__init__.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8db772..1d72417 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # CHANGELOG +## [0.5.1] 2021-06-17 + +### Added + +- Add `uniformly_spaced` property on trajectory +- Add constant add and sub on trajectories +- Add contant multiplication on trajectories + +### Fixed + +- Change time data calculation if only dt is given +- Fix comparation using threshold +- Fix a bug on default parameters of trackers +- Fix logging on algorithms + +### Others + +- Improve tests + ## [0.4.2] 2021-06-12 ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index 2d3e73a..3d9b71b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ author = 'Gustavo Viera-López, Alfredo Reyes, Jorge Morgado, Ernesto Altshuler' # The full version, including alpha/beta/rc tags -release = '0.5.0' +release = '0.5.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 5c71514..1ed73ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yupi" -version = "0.5.0" +version = "0.5.1" description = "A package for tracking and analysing objects trajectories" authors = [ "Gustavo Viera-López ", diff --git a/yupi/__init__.py b/yupi/__init__.py index bffda45..fcf4516 100644 --- a/yupi/__init__.py +++ b/yupi/__init__.py @@ -27,4 +27,4 @@ 'Vector' ] -__version__ = '0.5.0' \ No newline at end of file +__version__ = '0.5.1' \ No newline at end of file