Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
richrobe committed Nov 22, 2022
1 parent 80ed376 commit e56ebb7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

## Version 0.6.2 - November 21, 2022
## Version 0.7.0 - November 22, 2022
### Added
- `biopsykit.io`: Added functions to directly load aTimeLogger files (`biopsykit.io.load_atimelogger_file`) and to
convert time log files into a dictionary with start/end times (`biopsykit.io.convert_time_log_dict`)
- `biopsykit.io`:
- Added functions to directly load aTimeLogger files (`biopsykit.io.load_atimelogger_file`) and to
convert time log files into a dictionary with start/end times (`biopsykit.io.convert_time_log_dict`)
- Added support for loading data acquired from the [Biopac](https://www.biopac.com/) system (`biopsykit.io.biopac`)
- `biopsykit.plotting`: Added function to conveniently plot feature pairs (`biopsykit.plotting.feature_pairplot`),
which is a wrapper function for `seaborn.pairplot`
### Improvements
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 = "biopsykit"
version = "0.6.2-alpha.9"
version = "0.7.0"
description = "A Python package for the analysis of biopsychological data."
authors = [
"Robert Richer <robert.richer@fau.de>",
Expand Down
2 changes: 1 addition & 1 deletion src/biopsykit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"utils",
]

__version__ = "0.6.2-alpha.9"
__version__ = "0.7.0"


def version() -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/biopsykit/io/biopac.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def timezone(self) -> str:

@property
def event_markers(self):
"""Event markers set in the Acqknowledge software during the recording."""
"""Event markers set in the AcqKnowledge software during the recording."""
return self._event_markers

def data_as_df(
Expand Down

0 comments on commit e56ebb7

Please sign in to comment.