diff --git a/CHANGELOG.md b/CHANGELOG.md index 36e2ca7..ea02ef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,19 @@ 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.1.2](https://github.com/SebastianSedzik/playwright-decorators/compare/0.1.1...0.1.2) + +- fix: access to fixtures from @test method [`#10`](https://github.com/SebastianSedzik/playwright-decorators/pull/10) +- 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) +> 11 July 2023 + - fix: fix `this` context in `@test` method [`#9`](https://github.com/SebastianSedzik/playwright-decorators/pull/9) - ci: add GH actions for building, linting and testing package before merge [`#8`](https://github.com/SebastianSedzik/playwright-decorators/pull/8) - chore: update changelog [`4b0cabf`](https://github.com/SebastianSedzik/playwright-decorators/commit/4b0cabf7a5461c71dc2eb0b98f056dd458e185a5) +- chore: release v0.1.1 [`657f1c4`](https://github.com/SebastianSedzik/playwright-decorators/commit/657f1c409cee8b863226516300a82689c746f6d3) #### [0.1.0](https://github.com/SebastianSedzik/playwright-decorators/compare/0.0.1...0.1.0) diff --git a/package-lock.json b/package-lock.json index 7f97364..edaffd3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "playwright-decorators", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "playwright-decorators", - "version": "0.1.1", + "version": "0.1.2", "license": "ISC", "devDependencies": { "@playwright/test": "1.35.1", diff --git a/package.json b/package.json index ce10c51..dd4fd55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playwright-decorators", - "version": "0.1.1", + "version": "0.1.2", "description": "Decorators for writing Playwright based tests.", "main": "./dist/index.js", "types": "./dist/index.d.ts",