Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed script in extension #356

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion vs-code-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

All notable changes to the "cobol-unit-test" extension will be documented in this file. Versioning according to SemVer: https://semver.org/

## [0.4.5] 04.04.2024

## [0.4.6] 08.10.2024
- Fixed windows run test script in the extension to only run the executable once.

## [0.4.5] 08.10.2024
- Now using COBOL Check version 0.2.12

## [0.4.4] 04.04.2024
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ rem
rem GnuCOBOL 3.+ is installed and on the path. Its executable or alias or symlink is named "cobc".
%~d1
cd %~p1
cobc -xj %*
%~n1
cobc -xj %*
4 changes: 2 additions & 2 deletions vs-code-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Snippets"
],
"description": "Extension for running unit tests in Cobol",
"version": "0.4.5",
"version": "0.4.6",
"icon": "images/cobol-check-logo-small.png",
"repository": {
"type": "git",
Expand Down Expand Up @@ -40,7 +40,7 @@
}
],
"description": "Extension for running unit tests in Cobol",
"version": "0.4.5",
"version": "0.4.6",
"icon": "images/cobol-check-logo-small.png",
"repository": {
"type": "git",
Expand Down
Loading