diff --git a/.vscode/launch.json b/.vscode/launch.json index e8e7b744..8e1d6c66 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -28,7 +28,7 @@ "runtimeExecutable": "${execPath}", "args": [ "--extensionDevelopmentPath=${workspaceFolder}/dummy-ext", - "--install-extension=ablunit-test-runner-0.2.5.vsix", + "--install-extension=ablunit-test-runner-0.2.7.vsix", "--enable-proposed-api=kherring.ablunit-test-runner", "${workspaceFolder}/test_projects/${input:workspaceName}" ] diff --git a/CHANGELOG.md b/CHANGELOG.md index a093eeb1..c7bf544f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [0.2.7](https://github.com/kenherring/ablunit-test-runner/releases/tag/0.2.7) - 2024-09-24 (pre-release) + +This is a release candidate for 1.0.0. There is one open PR ([#194](https://github.com/kenherring/ablunit-test-runner/pull/194)), but if there are other issues reported they may be addressed as well. + + * Show incremental test results during test run (#195) + * Chore: fix emoji use in issue templates (#197) + * Add OE 12.8.4 test target (#196) + * Fix coverage reporting on first line and line after executed line (#193) + * Improve test name parsing when using `#` character (#190) + * npm update (#192) + * Add xref options to test profile configuration (#191) + * Use `charset` and `extraParameters` from `openedge-project.json` (#189) + * Replace `${DLC}` in executed command and generated ini file (#188) + +**Full Changelog**: [0.2.5...0.2.7](https://github.com/kenherring/ablunit-test-runner/compare/0.2.5...0.2.7) + # [0.2.5](https://github.com/kenherring/ablunit-test-runner/releases/tag/0.2.5) - 2024-09-03 (pre-release) * Update test parsing to find skipped/ignored tests (#184) diff --git a/package-lock.json b/package-lock.json index 67ac16b8..a367ed78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ablunit-test-runner", - "version": "0.2.5", + "version": "0.2.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ablunit-test-runner", - "version": "0.2.5", + "version": "0.2.7", "license": "MIT", "dependencies": { "minimatch": "^9.0.5", diff --git a/package.json b/package.json index 30c8c8e8..0e393539 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ablunit-test-runner", "displayName": "ABLUnit Test Runner", "description": "OpenEdge ABLUnit test runner for VSCode", - "version": "0.2.5", + "version": "0.2.7", "preview": true, "engineStrict": true, "galleryBanner": { diff --git a/snippets/snippets-abl.json b/snippets/snippets-abl.json index 7a531479..195cfad7 100644 --- a/snippets/snippets-abl.json +++ b/snippets/snippets-abl.json @@ -6,7 +6,7 @@ ], "scope": "abl" }, - "routing-level on error undo, throw.": { + "routine-level on error undo, throw.": { "prefix": "routine-level on error undo, throw.", "body": "routine-level on error undo, throw.", "scope": "abl" diff --git a/sonar-project.properties b/sonar-project.properties index a4b2332d..76d6c854 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,7 +1,7 @@ sonar.organization=kenherring sonar.projectKey=kenherring_ablunit-test-runner sonar.projectName=ablunit-test-runner -sonar.projectVersion=0.2.5 +sonar.projectVersion=0.2.7 sonar.sourceEncoding=UTF-8 sonar.sources=. diff --git a/src/version.ts b/src/version.ts index e66c645c..6b622645 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const LIB_VERSION = '0.2.5' +export const LIB_VERSION = '0.2.7'