Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Jan 31, 2022
1 parent 4680d17 commit ddca6c6
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 33 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] - 2022-01-31

### Added

- Zip non `.zip` files by default. This can be overriden by specifying `zip: false` (GitHub Action) or `--no-zip` (Command Line)
Expand Down Expand Up @@ -96,7 +98,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- First release

[unreleased]: https://github.com/smartbear/one-report-publisher/compare/v0.0.14...HEAD
[unreleased]: https://github.com/smartbear/one-report-publisher/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/smartbear/one-report-publisher/compare/v0.0.14...v0.1.0
[0.0.14]: https://github.com/smartbear/one-report-publisher/compare/v0.0.13...v0.0.14
[0.0.13]: https://github.com/smartbear/one-report-publisher/compare/v0.0.12...v0.0.13
[0.0.12]: https://github.com/smartbear/one-report-publisher/compare/v0.0.11...v0.0.12
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ step failed.
```yml
- name: 'Publish to OneReport'
if: ${{ always() }}
uses: smartbear/one-report-publisher@v0.0.14
uses: smartbear/one-report-publisher@v0.1.0
with:
organization-id: F5222E06-BA05-4C82-949A-2FE537B6F59F
password: ${{ secrets.ONE_REPORT_PASSWORD }}
Expand All @@ -43,7 +43,7 @@ installed (for example [cimg/node](https://circleci.com/developer/images/image/c
- run:
name: Publish test results to OneReport
command: |
npx @smartbear/one-report-publisher@0.0.14 \
npx @smartbear/one-report-publisher@0.1.0 \
--organization-id F5222E06-BA05-4C82-949A-2FE537B6F59F \
--password ${ONE_REPORT_PASSWORD} \
--reports ./reports/**/*.{xml,json,ndjson,zip}
Expand All @@ -54,7 +54,7 @@ installed (for example [cimg/node](https://circleci.com/developer/images/image/c
The command-line tool can be used in any CI pipeline that has the `npx` command available (it needs to have Node.js installed).

```
npx @smartbear/one-report-publisher@v0.0.14 --help
npx @smartbear/one-report-publisher@v0.1.0 --help

Usage: one-report-publisher [options]

Expand All @@ -70,7 +70,7 @@ Options:
Example:
```
npx @smartbear/one-report-publisher@0.0.14 \
npx @smartbear/one-report-publisher@0.1.0 \
--organization-id F5222E06-BA05-4C82-949A-2FE537B6F59F \
--password ${ONE_REPORT_PASSWORD} \
--reports ./reports/**/*.{xml,json,ndjson,zip}
Expand Down
63 changes: 39 additions & 24 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smartbear/one-report-publisher",
"version": "0.0.14",
"version": "0.1.0",
"description": "Publish Test Results to SmartBear OneReport",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand Down Expand Up @@ -54,11 +54,11 @@
"devDependencies": {
"@actions/core": "1.6.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.12",
"@types/node": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.10.1",
"@typescript-eslint/parser": "5.10.1",
"esbuild": "0.14.14",
"eslint": "8.7.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
Expand All @@ -80,7 +80,7 @@
"@cucumber/ci-environment": "9.0.0",
"@types/adm-zip": "0.4.34",
"adm-zip": "0.5.9",
"commander": "8.3.0",
"commander": "9.0.0",
"fast-glob": "3.2.11",
"source-map-support": "0.5.21"
}
Expand Down

0 comments on commit ddca6c6

Please sign in to comment.