Skip to content

Commit 5a74d0f

Browse files
chore(release): version packages
1 parent a6ec7a2 commit 5a74d0f

File tree

10 files changed

+15
-14
lines changed

10 files changed

+15
-14
lines changed

.changeset/busy-tires-reply.md

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

docs/demos/jspsych-image-button-response-demo1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<script src="https://unpkg.com/[email protected]"></script>
66
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
77
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
8-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
8+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
99
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
1010
<link rel="stylesheet" href="docs-demo.css" type="text/css">
1111
</head>

docs/demos/jspsych-preload-demo1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<script src="https://unpkg.com/[email protected]"></script>
66
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
77
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
8-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
8+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
99
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
1010
<link rel="stylesheet" href="docs-demo.css" type="text/css">
1111
</head>

docs/demos/jspsych-preload-demo2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<script src="https://unpkg.com/[email protected]"></script>
66
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
77
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
8-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
8+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
99
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
1010
<link rel="stylesheet" href="docs-demo.css" type="text/css">
1111
</head>

docs/demos/jspsych-preload-demo3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<script src="https://unpkg.com/[email protected]"></script>
66
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
77
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
8-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
8+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
99
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
1010
<link rel="stylesheet" href="docs-demo.css" type="text/css" />
1111
</head>

docs/demos/jspsych-preload-demo4.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<script src="https://unpkg.com/[email protected]"></script>
66
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
77
<script src="https://unpkg.com/@jspsych/[email protected]"></script>
8-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
8+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
99
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/jspsych.css" />
1010
<link rel="stylesheet" href="docs-demo.css" type="text/css">
1111
</head>

docs/plugins/image-button-response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ stimulus | string | The path of the image that was displayed.
4343
Using the CDN-hosted JavaScript file:
4444

4545
```js
46-
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.1.0"></script>
46+
<script src="https://unpkg.com/@jspsych/plugin-image-button-response@2.2.0"></script>
4747
```
4848

4949
Using the JavaScript file downloaded from a GitHub release dist archive:

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/plugin-image-button-response/CHANGELOG.md

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

3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- [#3563](https://github.com/jspsych/jsPsych/pull/3563) [`c902be3887c681e72b95824148a8d9c75efbcfc4`](https://github.com/jspsych/jsPsych/commit/c902be3887c681e72b95824148a8d9c75efbcfc4) Thanks [@farhat60](https://github.com/farhat60)! - CSS selector that queries the button to disable it was trying to get a class. Now it looks for the correct id and disables the button.
8+
39
## 2.1.0
410

511
### Minor Changes

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jspsych/plugin-image-button-response",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "jsPsych plugin for displaying a stimulus and getting a button response",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -38,6 +38,6 @@
3838
},
3939
"devDependencies": {
4040
"@jspsych/config": "^3.2.0",
41-
"@jspsych/test-utils": "^1.2.0"
41+
"@jspsych/test-utils": "^1.2.0"
4242
}
4343
}

0 commit comments

Comments
 (0)