Skip to content

Commit

Permalink
chore: prepare release v1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
heilerich committed Aug 13, 2021
1 parent 8189710 commit 2a21402
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion 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
Expand All @@ -18,4 +29,4 @@

# 1.0.0

* Initial release
* Initial release
2 changes: 1 addition & 1 deletion neurone_loader/__init__.py
Expand Up @@ -15,4 +15,4 @@

from .loader import Recording, Session, Phase

__version__ = '1.1.5'
__version__ = '1.1.6'

0 comments on commit 2a21402

Please sign in to comment.