Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.6.3] 2025-11-03

### Added

- Add `iblsorter_parameters.yaml` as a dataset to be copied during ALF export.

## [2.6.2] 2025-10-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion phylib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

__author__ = 'Cyrille Rossant'
__email__ = 'cyrille.rossant at gmail.com'
__version__ = '2.6.2'
__version__ = '2.6.3'
__version_git__ = __version__ + _git_version()


Expand Down
1 change: 1 addition & 0 deletions phylib/io/alf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

_FILE_RENAMES = [ # file_in, file_out, squeeze (bool to squeeze vector from matlab in npy)
('params.py', 'params.py', None),
('iblsorter_parameters.yaml', 'iblsorter_parameters.yaml', None),
('cluster_KSLabel.tsv', 'cluster_KSLabel.tsv', None),
('spike_clusters.npy', 'spikes.clusters.npy', True),
('spike_templates.npy', 'spikes.templates.npy', True),
Expand Down