File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed
Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 11import child_process from 'child_process' ;
2- import async_mutex from 'async-mutex' ;
2+ import { Mutex } from 'async-mutex' ;
33import tree_kill from 'tree-kill' ;
44import path from 'path' ;
55import 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 ;
You can’t perform that action at this time.
0 commit comments