Skip to content

Commit

Permalink
Merge pull request #280 from ssciwr/v1.5.0
Browse files Browse the repository at this point in the history
Version 1.5.0
  • Loading branch information
lkeegan authored Nov 20, 2024
2 parents 29a1065 + c5068cc commit 72e9937
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
include:
- os: "ubuntu-22.04"
python-version: "3.10"
psychopy-version: "2024.2.1"
psychopy-version: "2024.2.4"
- os: "ubuntu-22.04"
python-version: "3.10"
psychopy-version: "2024.1.4"
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: check-toml

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.4
hooks:
- id: ruff
types_or: [python, pyi, jupyter]
Expand All @@ -19,7 +19,7 @@ repos:
types_or: [python, pyi, jupyter]

- repo: https://github.com/kynan/nbstripout
rev: 0.7.1
rev: 0.8.1
hooks:
- id: nbstripout

Expand All @@ -32,13 +32,13 @@ repos:
- "prettier-plugin-toml"

- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.29.3
rev: 0.29.4
hooks:
- id: check-github-workflows
- id: check-readthedocs

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies: [numpy, PyQt5-stubs, types-requests]
Expand All @@ -51,7 +51,7 @@ repos:
]

- repo: https://github.com/rhysd/actionlint
rev: "v1.7.3"
rev: "v1.7.4"
hooks:
- id: actionlint

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.5.0] - 2024-11-20

### Added

- spatial error statistic [#255](https://github.com/ssciwr/vstt/pull/255)
- statistics at peak velocity [#267](https://github.com/ssciwr/vstt/pull/267)
- example jupyter notebook for filtering data [#274](https://github.com/ssciwr/vstt/pull/274), [#277](https://github.com/ssciwr/vstt/pull/277)
- option to turn target green when it is reached [#279](https://github.com/ssciwr/vstt/pull/279)

### Changed

- tone duration is now 160ms [#261](https://github.com/ssciwr/vstt/pull/261)

## [1.4.0] - 2023-12-08

### Added
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/trial-conditions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ the screen height (i.e. a line of length 1.0 in these units would extend from th
* Hide target when reached
* Enable to hide a target once the cursor has reached it
* Default: ``enabled``
* Turn target green when reached
* Enable to paint the target green once the cursor has reached it
* Default: ``disabled``
* Display target labels
* Enable to show a label inside each target
* The labels are taken from "Target labels" (see below)
Expand Down
2 changes: 1 addition & 1 deletion src/vstt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"__version__",
]

__version__ = "1.4.0"
__version__ = "1.5.0"

0 comments on commit 72e9937

Please sign in to comment.