Skip to content

Commit 6af4e59

Browse files
chore(release): version packages
1 parent c360cc5 commit 6af4e59

File tree

13 files changed

+28
-23
lines changed

13 files changed

+28
-23
lines changed

.changeset/big-dots-exercise.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/clean-buckets-chew.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/itchy-rabbits-float.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Plugin | Contributor | Description
3434
[html-swipe-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-html-swipe-response/README.md) | [Adam Richie-Halford](https://github.com/richford) | This plugin collects responses to an arbitrary HTML string using swipe gestures and keyboard responses.
3535
[html-vas-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-html-vas-response/README.md) | [Isaac Kinley](https://github.com/kinleyid) | This plugin collects responses to an arbitrary HTML string using a point-and-click visual analogue scale.
3636
[image-array-keyboard-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-image-array-keyboard-response/README.md) | [Younes Strittmatter](https://github.com/younesStrittmatter) | This plugin displays an arbitrary number of images and records responses generated with the keyboard.
37+
[image-click-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-image-click-response/README.md) | [Christophe Bossens](https://github.com/ChristopheBossens) | This plugin shows an image on which the user can place points by clicking/touching the image. The location of each point is recorded as data.
3738
[image-multi-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-image-multi-response/README.md) | [Adam Richie-Halford](https://github.com/richford) | This plugin collects responses to an image stimulus using both button clicks and key presses.
3839
[image-swipe-response](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-image-swipe-response/README.md) | [Adam Richie-Halford](https://github.com/richford) | This plugin collects responses to an image stimulus using swipe gestures and keyboard responses.
3940
[ios](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-ios/README.md) | [Isaac Kinley](https://github.com/kinleyid) | This plugin implements a continuous version of the Inclusion of Other in the Self (IOS) Scale ([Aron et al., 1992](https://psycnet.apa.org/doiLanding?doi=10.1037%2F0022-3514.63.4.596)).

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/plugin-html-vas-response/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @jspsych-contrib/plugin-html-vas-response
22

3+
## 2.1.0
4+
5+
### Minor Changes
6+
7+
- [#160](https://github.com/jspsych/jspsych-contrib/pull/160) [`50fc8db40def03a7eacfd3a8f7b5b5263cf72466`](https://github.com/jspsych/jspsych-contrib/commit/50fc8db40def03a7eacfd3a8f7b5b5263cf72466) Thanks [@kinleyid](https://github.com/kinleyid)! - Fixes an issue where drag events caused the scale to become unresponsive and the `not-allowed` cursor to appear.
8+
39
## 2.0.0
410

511
### Major Changes

packages/plugin-html-vas-response/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This plugin collects responses to an arbitrary HTML string using a point-and-cli
77
## Loading
88

99
```js
10-
<script src="https://unpkg.com/@jspsych-contrib/plugin-html-vas-response@2.0.0"></script>
10+
<script src="https://unpkg.com/@jspsych-contrib/plugin-html-vas-response@2.1.0"></script>
1111
```
1212

1313
## Compatibility

packages/plugin-html-vas-response/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jspsych-contrib/plugin-html-vas-response",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "This plugin collects responses to an arbitrary HTML string using a point-and-click visual analogue scale.",
55
"unpkg": "dist/index.browser.min.js",
66
"files": [
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @jspsych-contrib/plugin-image-click-response
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#140](https://github.com/jspsych/jspsych-contrib/pull/140) [`8e0babb8528567f36ba2547040b6ba5a555a7265`](https://github.com/jspsych/jspsych-contrib/commit/8e0babb8528567f36ba2547040b6ba5a555a7265) Thanks [@ChristopheBossens](https://github.com/ChristopheBossens)! - First major release of the plugin-image-click-response

packages/plugin-image-click-response/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jspsych-contrib/plugin-image-click-response",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "This plugin shows an image on which the user can place points by clicking/touching the image. The location of each point is recorded as data.",
55
"type": "module",
66
"main": "dist/index.cjs",

packages/plugin-ios/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @jspsych-contrib/plugin-ios
22

3+
## 2.0.1
4+
5+
### Patch Changes
6+
7+
- [#163](https://github.com/jspsych/jspsych-contrib/pull/163) [`3c3cd7170a95683ab6e0358f61bf495a5e81f126`](https://github.com/jspsych/jspsych-contrib/commit/3c3cd7170a95683ab6e0358f61bf495a5e81f126) Thanks [@kinleyid](https://github.com/kinleyid)! - Handling drag events and making plugin touch-responsive
8+
39
## 2.0.0
410

511
### Major Changes

packages/plugin-ios/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This plugin allows for continuous responses on the Inclusion of Other in the Sel
77
## Loading
88

99
```js
10-
<script src="https://unpkg.com/@jspsych-contrib/plugin-ios@2.0.0"></script>
10+
<script src="https://unpkg.com/@jspsych-contrib/plugin-ios@2.0.1"></script>
1111
```
1212

1313
## Compatibility

packages/plugin-ios/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jspsych-contrib/plugin-ios",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "This plugin implements a continuous version of the Inclusion of Other in the Self (IOS) Scale ([Aron et al., 1992](https://psycnet.apa.org/doiLanding?doi=10.1037%2F0022-3514.63.4.596)).",
55
"unpkg": "dist/index.browser.min.js",
66
"files": [

0 commit comments

Comments
 (0)