diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e2827c..b64707a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ noted in the changelog (i.e new functions or parameters, changes in parameter de improvements/enhancements. Fixes and modifications will be backwards compatible. - *.postN* : Consists of only metadata-related changes, such as updates to type hints or doc strings/documentation. +## [0.18.11] - 2024-11-27 +### 🐛 Fixes +- An error in a setter method that did not use `raise`. + ## [0.18.10] - 2024-11-27 ### 🚀 New/Added - Added deleter method for `subject_timeseries` and `concatenated_timeseries` properties diff --git a/README.md b/README.md index df1d8b0..ffff555 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # neurocaps [![Latest Version](https://img.shields.io/pypi/v/neurocaps.svg)](https://pypi.python.org/pypi/neurocaps/) [![Python Versions](https://img.shields.io/pypi/pyversions/neurocaps.svg)](https://pypi.python.org/pypi/neurocaps/) -[![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal)](https://doi.org/10.5281/zenodo.14231418) +[![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal)](https://doi.org/10.5281/zenodo.14232395) [![Github Repository](https://img.shields.io/badge/Source%20Code-neurocaps-purple)](https://github.com/donishadsmith/neurocaps) [![Test Status](https://github.com/donishadsmith/neurocaps/actions/workflows/testing.yaml/badge.svg)](https://github.com/donishadsmith/neurocaps/actions/workflows/testing.yaml) [![codecov](https://codecov.io/github/donishadsmith/neurocaps/graph/badge.svg?token=WS2V7I16WF)](https://codecov.io/github/donishadsmith/neurocaps) diff --git a/docs/introduction.rst b/docs/introduction.rst index d327999..ac190fb 100644 --- a/docs/introduction.rst +++ b/docs/introduction.rst @@ -9,7 +9,7 @@ :alt: Python Versions .. image:: https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal - :target: https://doi.org/10.5281/zenodo.14231418 + :target: https://doi.org/10.5281/zenodo.14232395 :alt: DOI .. image:: https://img.shields.io/badge/Source%20Code-neurocaps-purple @@ -86,7 +86,7 @@ Citing ------ :: - Smith, D. (2024). neurocaps. Zenodo. https://doi.org/10.5281/zenodo.14231418 + Smith, D. (2024). neurocaps. Zenodo. https://doi.org/10.5281/zenodo.14232395 Usage ----- diff --git a/neurocaps/__init__.py b/neurocaps/__init__.py index 21255e4..f95010f 100644 --- a/neurocaps/__init__.py +++ b/neurocaps/__init__.py @@ -3,4 +3,4 @@ __all__=["analysis", "extraction"] # Version in single place -__version__ = "0.18.10" +__version__ = "0.18.11" diff --git a/neurocaps/_utils/extraction/timeseriesextractorgetter.py b/neurocaps/_utils/extraction/timeseriesextractorgetter.py index 0e59caf..c76135a 100644 --- a/neurocaps/_utils/extraction/timeseriesextractorgetter.py +++ b/neurocaps/_utils/extraction/timeseriesextractorgetter.py @@ -16,7 +16,7 @@ def space(self): @space.setter def space(self, new_space): - if not isinstance(new_space, str): TypeError("`space` must be a string.") + if not isinstance(new_space, str): raise TypeError("`space` must be a string.") self._space = new_space @property