Skip to content

Commit

Permalink
📌 Merge pull request #106 from numaru/hotfix/1.10.1
Browse files Browse the repository at this point in the history
Hotfix/1.10.1
  • Loading branch information
numaru authored Jun 7, 2022
2 parents 7a92288 + 7f237bd commit 420dc8b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.10.1] - 2022-06-07

### Fixed

* Fix the async-mutex import.

## [1.10.0] - 2022-06-04

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

* Initial features

[Unreleased]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.0...develop
[1.9.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.1...v1.10.0
[Unreleased]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.1...develop
[1.10.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.10.0...v1.10.1
[1.10.0]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.1...v1.10.0
[1.9.1]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.9.0...v1.9.1
[1.9.0]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.8.2...v1.9.0
[1.8.2]: https://github.com/numaru/vscode-ceedling-test-adapter/compare/v1.8.1...v1.8.2
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "Kin Numaru"
},
"publisher": "numaru",
"version": "1.10.0",
"version": "1.10.1",
"license": "MIT",
"homepage": "https://github.com/numaru/vscode-ceedling-test-adapter",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/adapter.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import child_process from 'child_process';
import async_mutex from 'async-mutex';
import {Mutex} from 'async-mutex';
import tree_kill from 'tree-kill';
import path from 'path';
import fs from 'fs';
Expand Down Expand Up @@ -47,7 +47,7 @@ export class CeedlingAdapter implements TestAdapter {
private isCanceled: boolean = false;
private isPrettyTestLabelEnable: boolean = false;
private isPrettyTestFileLabelEnable: boolean = false;
private ceedlingMutex: async_mutex.Mutex = new async_mutex.Mutex();
private ceedlingMutex: Mutex = new Mutex();

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

0 comments on commit 420dc8b

Please sign in to comment.