Skip to content

Commit

Permalink
prepare prerelease 0.2.5 (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenherring authored Sep 3, 2024
1 parent 2517dc5 commit 55237a7
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 9 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.3.vsix",
"--install-extension=ablunit-test-runner-0.2.5.vsix",
"--enable-proposed-api=kherring.ablunit-test-runner",
"${workspaceFolder}/test_projects/${input:workspaceName}"
]
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# [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)
* Parse test methods using expected error annotation (#183)
* Unskip and fix tests (#182)
* Switch compile back to eslint (#180)
* Update eslint rules and related fixes (#179)
* Sonar coverage reporting - part 1 (#177)

**Full Changelog**: [0.2.3...0.2.5](https://github.com/kenherring/ablunit-test-runner/compare/0.2.3...0.2.5)

# [0.2.3](https://github.com/kenherring/ablunit-test-runner/releases/tag/0.2.3) - 2024-08-06 (pre-release)

* Re-enable test cases (#172)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The [ABLUnit Test Runner](https://github.com/kenherring/ablunit-test-runner/) ex

### 📷 Code Coverage Screenshot

![code coverage example screenshot](https://github.com/kenherring/ablunit-test-runner/raw/main/docs/insiders.png)
![code coverage example screenshot](https://github.com/kenherring/ablunit-test-runner/raw/main/resources/images/coverage.png)

## 📝 Supported OpenEdge Versions

Expand Down
5 changes: 3 additions & 2 deletions docs/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
This script bumps the version and update the necessary files.

```bash
npm version patch -m "v%s"
npm version minor -m "v%s"
npm version 0.2.5 --no-git-tag-version
npm version patch -m "v%s" --no-git-tag-version
npm version minor -m "v%s" --no-git-tag-version
```
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.3",
"version": "0.2.5",
"preview": true,
"engineStrict": true,
"galleryBanner": {
Expand Down
Binary file added resources/images/coverage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.3
sonar.projectVersion=0.2.5
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.3'
export const LIB_VERSION = '0.2.5'

0 comments on commit 55237a7

Please sign in to comment.