diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bd2938..d727a1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.1.6 + +* Bugfix: Reproducible ordering of sessions + + ⚠️ Session loading previously used `os.listdir` to find sessions. This function does not guarantee + any specific order, which might lead to inconsistencies between systems or even runs on the same + system. Sessions are now ordered chronological, i.e. according to their start time, which is + probably what most users expect. + +* Maintenance: Tests were migrated from Travis to GitHub Actions + # 1.1.5 * Github workflow for automatic deployment to PyPI @@ -18,4 +29,4 @@ # 1.0.0 -* Initial release \ No newline at end of file +* Initial release diff --git a/neurone_loader/__init__.py b/neurone_loader/__init__.py index c5b1db1..5f3e2af 100644 --- a/neurone_loader/__init__.py +++ b/neurone_loader/__init__.py @@ -15,4 +15,4 @@ from .loader import Recording, Session, Phase -__version__ = '1.1.5' +__version__ = '1.1.6'