diff --git a/CITATION.cff b/CITATION.cff index 8c04194..eb839ab 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -14,7 +14,7 @@ authors: given-names: "Stefan" orcid: "https://orcid.org/0000-0003-1470-9195" title: "PyBispectra" -version: 1.0.0 -doi: 10.5281/zenodo.8377821 -date-released: 2023-09-23 -url: "https://github.com/neuromodulation/PyBispectra/tree/main" +version: 1.1.0 +doi: 10.5281/zenodo.8377822 +date-released: 2023-11-18 +url: "https://github.com/neuromodulation/PyBispectra/tree/1.1.0" diff --git a/README.md b/README.md index c82ff78..75a6694 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,4 @@ To get started with the toolbox, check out the [documentation](https://pybispect ## Citing: If you use this toolbox in your work, please include the following citation:
-Binns, T. S., Pellegrini, F., Jurhar, T., & Haufe, S. (2023). PyBispectra (Version 1.0.0). DOI: [10.5281/zenodo.8377821](https://doi.org/10.5281/zenodo.8377821) \ No newline at end of file +Binns, T. S., Pellegrini, F., Jurhar, T., & Haufe, S. (2023). PyBispectra (Version 1.1.0). DOI: [10.5281/zenodo.8377822](https://doi.org/10.5281/zenodo.8377822) \ No newline at end of file diff --git a/changelog.md b/changelog.md index acf2eb4..b67e412 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # PyBispectra Changelog -## [Version 1.1.0dev](https://pybispectra.readthedocs.io/en/main/) +## [Version 1.1.0](https://pybispectra.readthedocs.io/en/1.1.0/) ##### Enhancements - Reduced the memory requirement of bispectrum computations. diff --git a/docs/source/conf.py b/docs/source/conf.py index 2d8cddd..3a1844c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,7 +16,7 @@ project = "PyBispectra" copyright = "2023, Thomas Samuel Binns" author = "Thomas Samuel Binns" -release = "1.1.0dev" +release = "1.1.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 7fa2310..7ac679f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pybispectra" -version = "1.1.0dev" +version = "1.1.0" authors = [ { name="Thomas Samuel Binns", email="t.s.binns@outlook.com" } ] diff --git a/src/pybispectra/__init__.py b/src/pybispectra/__init__.py index 6b5ef33..1d99ca1 100644 --- a/src/pybispectra/__init__.py +++ b/src/pybispectra/__init__.py @@ -1,6 +1,6 @@ """Initialisation of the PyBispectra package.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .cfc import AAC, PAC, PPC from .tde import TDE diff --git a/src/pybispectra/cfc/__init__.py b/src/pybispectra/cfc/__init__.py index 6438a50..f7df4ad 100644 --- a/src/pybispectra/cfc/__init__.py +++ b/src/pybispectra/cfc/__init__.py @@ -1,6 +1,6 @@ """Tools for handling cross-frequency coupling analysis.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .aac import AAC from .pac import PAC diff --git a/src/pybispectra/data/__init__.py b/src/pybispectra/data/__init__.py index d65d2cd..a72318b 100644 --- a/src/pybispectra/data/__init__.py +++ b/src/pybispectra/data/__init__.py @@ -1,5 +1,5 @@ """Storage and tools for handling data files.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .example_data import get_example_data_paths, DATASETS diff --git a/src/pybispectra/tde/__init__.py b/src/pybispectra/tde/__init__.py index f8e8bdd..3c3d558 100644 --- a/src/pybispectra/tde/__init__.py +++ b/src/pybispectra/tde/__init__.py @@ -1,5 +1,5 @@ """Tools for handling time delay estimation analysis.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .tde import TDE diff --git a/src/pybispectra/utils/__init__.py b/src/pybispectra/utils/__init__.py index 375c925..3d420f7 100644 --- a/src/pybispectra/utils/__init__.py +++ b/src/pybispectra/utils/__init__.py @@ -1,6 +1,6 @@ """Helper tools for processing and storing results.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .ged import SpatioSpectralFilter from .results import ResultsCFC, ResultsTDE, ResultsWaveShape diff --git a/src/pybispectra/waveshape/__init__.py b/src/pybispectra/waveshape/__init__.py index 10a075a..cba0b43 100644 --- a/src/pybispectra/waveshape/__init__.py +++ b/src/pybispectra/waveshape/__init__.py @@ -1,5 +1,5 @@ """Tools for handling waveshape analysis.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .waveshape import WaveShape