diff --git a/README.md b/README.md index 0e2b162..848d8b7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ artefacts from electrophysiological data using the Period-based Artefact Reconstruction and Removal Method (PARRM) of Dastin-van Rijn *et al.* (2021; DOI: [10.1016/j.crmeth.2021.100010](https://doi.org/10.1016/j.crmeth.2021.100010)). -### View the documentation here: [pyparrm.readthedocs.io](https://pyparrm.readthedocs.io/en/main/) +### View the documentation here: [pyparrm.readthedocs.io](https://pyparrm.readthedocs.io/en/1.1.0/) All credit for PARRM goes to its original authors. PyPARRM is based on the diff --git a/changelog.md b/changelog.md index 3f8bfa4..2a359f0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # PyPARRM Changelog -## [Version 1.1.0dev](https://pyparrm.readthedocs.io/en/main/index.html) +## [Version 1.1.0](https://pyparrm.readthedocs.io/en/1.1.0/index.html) ##### Enhancements - Improved the speed for filtering data with many samples. diff --git a/docs/source/_static/versions.json b/docs/source/_static/versions.json index 3145efa..022fb27 100644 --- a/docs/source/_static/versions.json +++ b/docs/source/_static/versions.json @@ -1,8 +1,8 @@ [ { - "name": "1.1.0dev", - "version": "main", - "url": "https://pyparrm.readthedocs.io/en/main/" + "name": "1.1.0", + "version": "1.1.0", + "url": "https://pyparrm.readthedocs.io/en/1.1.0/" }, { "name": "1.0.0", diff --git a/docs/source/conf.py b/docs/source/conf.py index 72f3246..bee8d40 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,7 +16,7 @@ project = "PyPARRM" 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 3c5048f..6b1efe6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pyparrm" -version = "1.1.0dev" +version = "1.1.0" authors = [ { name="Thomas Samuel Binns", email="t.s.binns@outlook.com" } ] diff --git a/setup.py b/setup.py index bf882ae..d34b563 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="PyPARRM", - version="1.1.0dev", + version="1.1.0", package_dir={"": "src"}, packages=["pyparrm", "pyparrm._utils"], ) diff --git a/src/pyparrm/__init__.py b/src/pyparrm/__init__.py index b4cc587..f23fdb5 100644 --- a/src/pyparrm/__init__.py +++ b/src/pyparrm/__init__.py @@ -1,5 +1,5 @@ """Initialisation for the PyPARRM package.""" -__version__ = "1.1.0dev" +__version__ = "1.1.0" from .parrm import PARRM