diff --git a/README.md b/README.md index d51f372848..977cf6eba4 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ With SpikeInterface, users can: ## Documentation -Detailed documentation of the latest PyPI release of SpikeInterface can be found [here](https://spikeinterface.readthedocs.io/en/0.99.0). +Detailed documentation of the latest PyPI release of SpikeInterface can be found [here](https://spikeinterface.readthedocs.io/en/0.99.1). Detailed documentation of the development version of SpikeInterface can be found [here](https://spikeinterface.readthedocs.io/en/latest). diff --git a/doc/releases/0.99.1.rst b/doc/releases/0.99.1.rst new file mode 100644 index 0000000000..688f9f6a41 --- /dev/null +++ b/doc/releases/0.99.1.rst @@ -0,0 +1,13 @@ +.. _release0.99.1: + +SpikeInterface 0.99.1 release notes +----------------------------------- + +14th November 2023 + +Minor release with some bug fixes. + +* Fix crash when default start / end frame arguments on motion interpolation are used (#2176) +* Fix bug in `make_match_count_matrix()` when computing matching events (#2182, #2191, #2196) +* Fix maxwell tests by setting HDF5_PLUGIN_PATH env in action (#2161) +* Add read_npz_sorting to extractors module (#2183) diff --git a/doc/whatisnew.rst b/doc/whatisnew.rst index 33735a47fd..2232173e5a 100644 --- a/doc/whatisnew.rst +++ b/doc/whatisnew.rst @@ -8,6 +8,7 @@ Release notes .. toctree:: :maxdepth: 1 + releases/0.99.1.rst releases/0.99.0.rst releases/0.98.2.rst releases/0.98.1.rst @@ -32,6 +33,12 @@ Release notes releases/0.9.1.rst +Version 0.99.1 +============== + +* Minor release with some bug fixes + + Version 0.99.0 ============== diff --git a/pyproject.toml b/pyproject.toml index 658703b25c..954a6dbc8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "spikeinterface" -version = "0.100.0.dev0" +version = "0.99.1" authors = [ { name="Alessio Buccino", email="alessiop.buccino@gmail.com" }, { name="Samuel Garcia", email="sam.garcia.die@gmail.com" }, @@ -146,8 +146,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 = [ @@ -164,8 +164,8 @@ docs = [ "hdbscan>=0.8.33", # For sorters spykingcircus2 + tridesclous "numba", # For many postprocessing functions # 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 ]