From cf1fd795a6efa00a1bbe0642e38bca2e1f65fe18 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 22 Apr 2020 12:07:51 -0700 Subject: [PATCH] chore: mark v0.14.0 (#1918) Note: this is a PR to be merged into the `release-0.14` branch. Once this is merged to the branch: - all test bots should kick in and run tests for this commit - `publish_canary.yml` will kick in and publish `0.14.0-next.XXXX` version that can be tested manually Once testing is complete: - If we are **satisfied** with the results, we can publish github release against this commit. Once release is published, the `0.14.0` will be published by `publish_release.yml` workflow. - if we are **not satisfied**, then we can either cherry-pick fixes into the branch, or re-create branch from a nicer point. --- docs/api.md | 2 +- package.json | 2 +- packages/playwright-chromium/package.json | 4 ++-- packages/playwright-firefox/package.json | 4 ++-- packages/playwright-webkit/package.json | 4 ++-- packages/playwright/package.json | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/api.md b/docs/api.md index 98cebebb45fd4..30cb8a90d621b 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1,5 +1,5 @@ -# Playwright API Tip-Of-Tree +# Playwright API v0.14.0 ##### Table of Contents diff --git a/package.json b/package.json index 1934d835fae07..9be550a329269 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playwright-core", - "version": "0.14.0-post", + "version": "0.14.0", "description": "A high-level API to automate web browsers", "repository": "github:Microsoft/playwright", "engines": { diff --git a/packages/playwright-chromium/package.json b/packages/playwright-chromium/package.json index e82a2362da984..031225aad77d7 100644 --- a/packages/playwright-chromium/package.json +++ b/packages/playwright-chromium/package.json @@ -1,6 +1,6 @@ { "name": "playwright-chromium", - "version": "0.14.0-post", + "version": "0.14.0", "description": "A high-level API to automate Chromium", "repository": "github:Microsoft/playwright", "main": "index.js", @@ -12,6 +12,6 @@ }, "license": "Apache-2.0", "dependencies": { - "playwright-core": "=0.14.0-post" + "playwright-core": "=0.14.0" } } diff --git a/packages/playwright-firefox/package.json b/packages/playwright-firefox/package.json index ec19ed8979d2d..3c93aca71e240 100644 --- a/packages/playwright-firefox/package.json +++ b/packages/playwright-firefox/package.json @@ -1,6 +1,6 @@ { "name": "playwright-firefox", - "version": "0.14.0-post", + "version": "0.14.0", "description": "A high-level API to automate Firefox", "repository": "github:Microsoft/playwright", "main": "index.js", @@ -12,6 +12,6 @@ }, "license": "Apache-2.0", "dependencies": { - "playwright-core": "=0.14.0-post" + "playwright-core": "=0.14.0" } } diff --git a/packages/playwright-webkit/package.json b/packages/playwright-webkit/package.json index f07a424587e9a..2fc0964c3192e 100644 --- a/packages/playwright-webkit/package.json +++ b/packages/playwright-webkit/package.json @@ -1,6 +1,6 @@ { "name": "playwright-webkit", - "version": "0.14.0-post", + "version": "0.14.0", "description": "A high-level API to automate WebKit", "repository": "github:Microsoft/playwright", "main": "index.js", @@ -12,6 +12,6 @@ }, "license": "Apache-2.0", "dependencies": { - "playwright-core": "=0.14.0-post" + "playwright-core": "=0.14.0" } } diff --git a/packages/playwright/package.json b/packages/playwright/package.json index 8bbad6a6d3dde..46f0f94027ffe 100644 --- a/packages/playwright/package.json +++ b/packages/playwright/package.json @@ -1,6 +1,6 @@ { "name": "playwright", - "version": "0.14.0-post", + "version": "0.14.0", "description": "A high-level API to automate web browsers", "repository": "github:Microsoft/playwright", "main": "index.js", @@ -13,6 +13,6 @@ }, "license": "Apache-2.0", "dependencies": { - "playwright-core": "=0.14.0-post" + "playwright-core": "=0.14.0" } }