Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed Nov 18, 2023
1 parent 1125ab2 commit 6756ce5
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:<br/>
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)
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)
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
]
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/cfc/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/data/__init__.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion src/pybispectra/tde/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Tools for handling time delay estimation analysis."""

__version__ = "1.1.0dev"
__version__ = "1.1.0"

from .tde import TDE
2 changes: 1 addition & 1 deletion src/pybispectra/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/pybispectra/waveshape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Tools for handling waveshape analysis."""

__version__ = "1.1.0dev"
__version__ = "1.1.0"

from .waveshape import WaveShape

0 comments on commit 6756ce5

Please sign in to comment.