From 7f213181f24d464c7f433513140add8945d20f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20S=C4=99dzik?= Date: Mon, 31 Jul 2023 16:34:38 +0200 Subject: [PATCH] chore: release v0.10.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c6bd08..410c608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,16 @@ 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.10.0](https://github.com/SebastianSedzik/playwright-decorators/compare/0.9.0...0.10.0) + +- feat: throw errors when missing `@test` or `@suite` decorators for given test or class [`#24`](https://github.com/SebastianSedzik/playwright-decorators/pull/24) + #### [0.9.0](https://github.com/SebastianSedzik/playwright-decorators/compare/0.8.1...0.9.0) +> 26 July 2023 + - feat: add `@annotation` decorator [`#23`](https://github.com/SebastianSedzik/playwright-decorators/pull/23) +- chore: release v0.9.0 [`44918a3`](https://github.com/SebastianSedzik/playwright-decorators/commit/44918a3a870493e139e0272f3db986ab8b582be9) #### [0.8.1](https://github.com/SebastianSedzik/playwright-decorators/compare/0.8.0...0.8.1) diff --git a/package-lock.json b/package-lock.json index 61695f9..2a71eac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "playwright-decorators", - "version": "0.9.0", + "version": "0.10.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "playwright-decorators", - "version": "0.9.0", + "version": "0.10.0", "license": "MIT", "devDependencies": { "@playwright/test": "1.36.1", diff --git a/package.json b/package.json index 6c433ca..f4406fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playwright-decorators", - "version": "0.9.0", + "version": "0.10.0", "description": "Decorators for writing Playwright based tests.", "main": "./dist/index.js", "types": "./dist/index.d.ts",