From fe09a1da630a1be91fee57da408ed0088bc39681 Mon Sep 17 00:00:00 2001 From: tooniez Date: Wed, 28 Aug 2024 13:43:32 +0930 Subject: [PATCH] chore(release): 0.0.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ package.json | 9 +++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c796b87 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,21 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +### 0.0.1 (2024-08-28) + + +### Features + +* add badge ([017b064](https://github.com/tooniez/supertest-cucumber-ts/commit/017b0643869dba4cf682d6d51332a3ae55d5466d)) +* add cucumber post feature ([d037883](https://github.com/tooniez/supertest-cucumber-ts/commit/d037883a8583967c905d03c8055d0043d62a3008)) +* add cucumber reporting ([52c3d97](https://github.com/tooniez/supertest-cucumber-ts/commit/52c3d97f9dbd119497df38ab323e13c990e1e158)) +* add cucumber step definition ([3c34550](https://github.com/tooniez/supertest-cucumber-ts/commit/3c345503aa8aeeae49ff7050a9ffe26a38fad8b4)) +* add supertest test ([07b42de](https://github.com/tooniez/supertest-cucumber-ts/commit/07b42deffee73e4265fce1fe20fe07e3cea36b19)) +* updat ci reporting script ([8675a39](https://github.com/tooniez/supertest-cucumber-ts/commit/8675a39da92dca1db0b7c7b76b26565cb437ea48)) +* update reports to results dir ([0813b6c](https://github.com/tooniez/supertest-cucumber-ts/commit/0813b6c45f048a23731ee7df3d9f0816b1029d4f)) + + +### Bug Fixes + +* update explicit import ([1102b30](https://github.com/tooniez/supertest-cucumber-ts/commit/1102b30914a62c1ccace7679a803142c2d12befe)) diff --git a/package.json b/package.json index ba6fd4f..7373064 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,18 @@ { "name": "supertest-cucumber", - "version": "0.0.0", + "version": "0.0.1", "scripts": { "test": "npm run test:supertest && npm run test:cucumber", "test:supertest": "jest specs/supertest.spec.ts", "test:cucumber": "cucumber-js --require features/support/*.ts features/*.feature -f json:cucumber_report.json", "generate:report": "node report.js" }, - "keywords": ["supertest", "cucumber", "typescript", "jest"], + "keywords": [ + "supertest", + "cucumber", + "typescript", + "jest" + ], "author": "tooniez", "license": "MIT", "description": "",