Skip to content

Commit

Permalink
Merge pull request #2998 from alejoe91/prepare-0.100.0rc0
Browse files Browse the repository at this point in the history
Updated release notes and pyproject for 0.101.0rc0
  • Loading branch information
alejoe91 authored Jun 8, 2024
2 parents 631e8a0 + 6daceb1 commit 8647e15
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 9 deletions.
12 changes: 12 additions & 0 deletions doc/releases/0.100.5.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.. _release0.100.5:

SpikeInterface 0.100.5 release notes
------------------------------------

6th April 2024

Minor release with bug fixes

* Open Ephys: Use discovered recording ids to load sync timestamps (#2655)
* Fix channel gains in NwbRecordingExtractor with backend (#2661)
* Fix depth location in spikes on traces map (#2676)
13 changes: 13 additions & 0 deletions doc/releases/0.100.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.. _release0.100.6:

SpikeInterface 0.100.6 release notes
------------------------------------

30th April 2024

Minor release with bug fixes

* Avoid np.prod in make_shared_array (#2621)
* Improve caching of MS5 sorter (#2690)
* Allow for remove_excess_spikes to remove negative spike times (#2716)
* Update ks4 wrapper for newer version>=4.0.3 (#2701, #2774)
14 changes: 14 additions & 0 deletions doc/releases/0.100.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.. _release0.100.7:

SpikeInterface 0.100.7 release notes
------------------------------------

7th June 2024

Minor release with bug fixes

* Fix get_traces for a local common reference (#2649)
* Update KS4 parameters (#2810)
* Zarr: extract time vector once and for all! (#2828)
* Fix waveforms save in recordingless mode (#2889)
* Fix the new way of handling cmap in matpltolib. This fix the matplotib 3.9 problem related to this (#2891)
26 changes: 26 additions & 0 deletions doc/whatisnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Release notes
.. toctree::
:maxdepth: 1

releases/0.100.7.rst
releases/0.100.6.rst
releases/0.100.5.rst
releases/0.100.4.rst
releases/0.100.3.rst
releases/0.100.2.rst
Expand Down Expand Up @@ -38,6 +41,29 @@ Release notes
releases/0.9.1.rst


(PRE-RELEASE) Version 0.101.0rc0
================================

* Major release with `SortingAnalyzer`

Version 0.100.7
===============

* Minor release with bug fixes


Version 0.100.6
===============

* Minor release with bug fixes


Version 0.100.5
===============

* Minor release with bug fixes


Version 0.100.4
===============

Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "spikeinterface"
version = "0.101.0"
version = "0.101.0rc0"
authors = [
{ name="Alessio Buccino", email="[email protected]" },
{ name="Samuel Garcia", email="[email protected]" },
Expand Down Expand Up @@ -121,8 +121,8 @@ test_core = [

# for github test : probeinterface and neo from master
# for release we need pypi, so this need to be commented
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
]

test = [
Expand Down Expand Up @@ -154,8 +154,8 @@ test = [

# for github test : probeinterface and neo from master
# for release we need pypi, so this need to be commented
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git",
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git",
]

docs = [
Expand All @@ -175,8 +175,8 @@ docs = [
"xarray", # For use of SortingAnalyzer zarr format
"networkx",
# for release we need pypi, so this needs to be commented
"probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", # We always build from the latest version
"neo @ git+https://github.com/NeuralEnsemble/python-neo.git", # We always build from the latest version
# "probeinterface @ git+https://github.com/SpikeInterface/probeinterface.git", # We always build from the latest version
# "neo @ git+https://github.com/NeuralEnsemble/python-neo.git", # We always build from the latest version

]

Expand Down
4 changes: 2 additions & 2 deletions src/spikeinterface/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
# This flag must be set to False for release
# This avoids using versioning that contains ".dev0" (and this is a better choice)
# This is mainly useful when using run_sorter in a container and spikeinterface install
DEV_MODE = True
# DEV_MODE = False
# DEV_MODE = True
DEV_MODE = False

0 comments on commit 8647e15

Please sign in to comment.