Skip to content

Commit

Permalink
updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsbinns committed Jun 15, 2023
1 parent 45e481b commit cd142d0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions docs/source/_static/versions.json
Original file line number Diff line number Diff line change
@@ -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",
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 = "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
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 = "pyparrm"
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="PyPARRM",
version="1.1.0dev",
version="1.1.0",
package_dir={"": "src"},
packages=["pyparrm", "pyparrm._utils"],
)
2 changes: 1 addition & 1 deletion src/pyparrm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Initialisation for the PyPARRM package."""

__version__ = "1.1.0dev"
__version__ = "1.1.0"

from .parrm import PARRM

0 comments on commit cd142d0

Please sign in to comment.