Skip to content

Commit

Permalink
Patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuederle committed May 27, 2024
1 parent 4f8c0a3 commit e1493da
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ For more information see the
[Github Releases Page](https://github.com/mad-lab-fau/gaitmap/releases) of this
project.

## [2.5.1] - 2024-05-27

### Fixed
The package updates in 2.5.0 broke some things. These are now fixed.

- For the parameter errors, the order of the output parameters has changed slightly, as they are now sorted to avoid
future breaking changes, based on changes in the sor policy in pandas
- The matches for the stride matching are now sorted to avoid future breaking changes, based on changes in the sor
policy in scipy sparse arrays
- The `PCAAlignment` is now more robust by enforcing a direction of the first principal component.
The method also has a new attribute `normalized_pca_components_` that hold the components after this adjustment.
This change might result in different results for the PCA step of the alignment.
However, in combination with the forward direction alignment, the results should be identical to the previous version.


## [2.5.0] - 2024-05-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion gaitmap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The Gait and Movement Analysis Package."""

__version__ = "2.5.0"
__version__ = "2.5.1"
2 changes: 1 addition & 1 deletion gaitmap_mad/gaitmap_mad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
Note, that we only support using the exact same version of the gaitmap library.
"""

__version__ = "2.5.0"
__version__ = "2.5.1"
2 changes: 1 addition & 1 deletion gaitmap_mad/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gaitmap_mad"
version = "2.5.0"
version = "2.5.1"
description = "Specific algorithm implementaions by the mad_lab"
license = "AGPL-3.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gaitmap"
version = "2.5.0"
version = "2.5.1"
description = "The Gait and Movement Analysis Package - Your definite guide to reliable IMU based human movement analysis."
license = "MIT"
readme = "README.md"
Expand Down

0 comments on commit e1493da

Please sign in to comment.