Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
- update changelog
- bump pre-commit / actions versions
  • Loading branch information
lkeegan committed Sep 29, 2023
1 parent 0d275df commit b3b60b1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Create Windows installer
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: makensis.exe /V4 vstt-windows-installer.nsi
- name: Upload installer to tagged release
if: startsWith(github.event.ref, 'refs/tags/')
Expand All @@ -33,7 +33,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
Expand Down
4 changes: 2 additions & 2 deletions .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: "2023.2.0"
psychopy-version: "2023.2.2"
- os: "ubuntu-22.04"
python-version: "3.10"
psychopy-version: "2023.1.3"
Expand All @@ -38,7 +38,7 @@ jobs:
python-version: "3.8"
psychopy-version: "2022.1.4"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand Down
12 changes: 6 additions & 6 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/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
- id: black-jupyter
Expand All @@ -21,21 +21,21 @@ repos:
- id: nbstripout

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.1
rev: v3.0.3
hooks:
- id: prettier
additional_dependencies:
- prettier
- "prettier-plugin-toml"

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

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

- repo: https://github.com/asottile/reorder-python-imports
rev: v3.10.0
rev: v3.11.0
hooks:
- id: reorder-python-imports

Expand All @@ -60,7 +60,7 @@ repos:
- "--ignore=E501,W503,E203"

- repo: https://github.com/rhysd/actionlint
rev: "v1.6.25"
rev: "v1.6.26"
hooks:
- id: actionlint

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

## [1.3.0] - 2023-09-29

### Added

- hand path area statistic and visualization [#241](https://github.com/ssciwr/vstt/pull/241)
- normalised hand path area statistic [#247](https://github.com/ssciwr/vstt/pull/247)
- support for psychopy 2023.2.0 [#244](https://github.com/ssciwr/vstt/pull/244)

## [1.2.0] - 2023-07-07

### Added
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.2.0"
__version__ = "1.3.0"

0 comments on commit b3b60b1

Please sign in to comment.