Skip to content

Commit 420dc8b

Browse files
authored
📌 Merge pull request #106 from numaru/hotfix/1.10.1
Hotfix/1.10.1
2 parents 7a92288 + 7f237bd commit 420dc8b

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [1.10.1] - 2022-06-07
11+
12+
### Fixed
13+
14+
* Fix the async-mutex import.
15+
1016
## [1.10.0] - 2022-06-04
1117

1218
### Added
@@ -159,8 +165,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
159165

160166
* Initial features
161167

162-
[Unreleased]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.0...develop
163-
[1.9.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.1...v1.10.0
168+
[Unreleased]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.1...develop
169+
[1.10.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.0...v1.10.1
170+
[1.10.0]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.1...v1.10.0
164171
[1.9.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.0...v1.9.1
165172
[1.9.0]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.8.2...v1.9.0
166173
[1.8.2]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.8.1...v1.8.2

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"name": "Kin Numaru"
88
},
99
"publisher": "numaru",
10-
"version": "1.10.0",
10+
"version": "1.10.1",
1111
"license": "MIT",
1212
"homepage": "https://github.com/numaru/vscode-ceedling-test-adapter",
1313
"repository": {

src/adapter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import child_process from 'child_process';
2-
import async_mutex from 'async-mutex';
2+
import {Mutex} from 'async-mutex';
33
import tree_kill from 'tree-kill';
44
import path from 'path';
55
import fs from 'fs';
@@ -47,7 +47,7 @@ export class CeedlingAdapter implements TestAdapter {
4747
private isCanceled: boolean = false;
4848
private isPrettyTestLabelEnable: boolean = false;
4949
private isPrettyTestFileLabelEnable: boolean = false;
50-
private ceedlingMutex: async_mutex.Mutex = new async_mutex.Mutex();
50+
private ceedlingMutex: Mutex = new Mutex();
5151

5252
get tests(): vscode.Event<TestLoadStartedEvent | TestLoadFinishedEvent> {
5353
return this.testsEmitter.event;

0 commit comments

Comments
 (0)