Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MNT] Release 1.5 #313

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/latest.rst → doc/changes/1.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Version 1.5
- Expose the abstract :class:`~mne_lsl.stream.BaseStream` object to create custom stream objects relying on different communication protocols (:pr:`302` by `Mathieu Scheltienne`_)
- Add argument ``source_id`` to :class:`~mne_lsl.player.PlayerLSL` to specify the source_id of the stream (:pr:`305` by `Mathieu Scheltienne`_)
- Add documentation about the processing applied to a :class:`~mne_lsl.stream.StreamLSL` and :class:`~mne_lsl.stream.EpochsStream` object (:pr:`309` by `Mathieu Scheltienne`_)
- Add example of real-time classifier using :class:`~mne_lsl.stream.EpochsStream` (:pr:`312` by `Mathieu Scheltienne`_)

Infrastructure
--------------
Expand Down
2 changes: 1 addition & 1 deletion doc/changes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog
.. toctree::
:titlesonly:

latest.rst
1.5.rst
1.4.rst
1.3.rst
1.2.rst
Expand Down
2 changes: 1 addition & 1 deletion examples/40_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
# --------------
#
# When you are done with a :class:`~mne_lsl.player.PlayerLSL`,
# :class:`~mne_lsl.stream.StreamLSL` ir :class:`~mne_lsl.stream.EpochsStream`, don't
# :class:`~mne_lsl.stream.StreamLSL` or :class:`~mne_lsl.stream.EpochsStream`, don't
# forget to free the resources they use to continuously mock an LSL stream or receive
# new data from an LSL stream.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ maintainers = [
name = 'mne_lsl'
readme = 'README.md'
requires-python = '>=3.9'
version = '1.5.0.dev0'
version = '1.5.0'

[project.optional-dependencies]
all = [
Expand Down
Loading