From bff619f29699aca937fd6c28d32d6ab87c236653 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20S=C4=99dzik?= Date: Thu, 13 Jul 2023 21:59:52 +0200 Subject: [PATCH] chore: release v0.2.0 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea02ef5..858a735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [0.2.0](https://github.com/SebastianSedzik/playwright-decorators/compare/0.1.2...0.2.0) + +- feat: add `afterAll`, `afterEach`, `beforeAll`, `beforeEach` decorators [`#12`](https://github.com/SebastianSedzik/playwright-decorators/pull/12) +- fix: use dynamic fixtures instead of hardcoded [`#11`](https://github.com/SebastianSedzik/playwright-decorators/pull/11) + #### [0.1.2](https://github.com/SebastianSedzik/playwright-decorators/compare/0.1.1...0.1.2) +> 12 July 2023 + - fix: access to fixtures from @test method [`#10`](https://github.com/SebastianSedzik/playwright-decorators/pull/10) +- chore: release v0.1.2 [`516c41f`](https://github.com/SebastianSedzik/playwright-decorators/commit/516c41faf8f62fab1d0f82e2df0fb35bc3f401ec) - docs: add banner about early stage [`8a72868`](https://github.com/SebastianSedzik/playwright-decorators/commit/8a72868646917c9fd73931e642d9524cefb6a055) #### [0.1.1](https://github.com/SebastianSedzik/playwright-decorators/compare/0.1.0...0.1.1) diff --git a/package-lock.json b/package-lock.json index edaffd3..d694476 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "playwright-decorators", - "version": "0.1.2", + "version": "0.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playwright-decorators", - "version": "0.1.2", + "version": "0.2.0", "license": "ISC", "devDependencies": { "@playwright/test": "1.35.1", diff --git a/package.json b/package.json index dd4fd55..a7ffb65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playwright-decorators", - "version": "0.1.2", + "version": "0.2.0", "description": "Decorators for writing Playwright based tests.", "main": "./dist/index.js", "types": "./dist/index.d.ts",