Skip to content

Commit

Permalink
Prepare pre-release 0.2.7 (#200)
Browse files Browse the repository at this point in the history
Co-authored-by: Gilles Querret <[email protected]>
  • Loading branch information
kenherring and gquerret authored Sep 24, 2024
1 parent 7400f25 commit 7f2fe9c
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
]
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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 @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion snippets/snippets-abl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -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=.
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const LIB_VERSION = '0.2.5'
export const LIB_VERSION = '0.2.7'

0 comments on commit 7f2fe9c

Please sign in to comment.