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.
This commit is contained in:
Andrey Lushnikov 2020-04-22 12:07:51 -07:00 committed by Andrey Lushnikov
parent 9bd55e9364
commit cf1fd795a6
6 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
# Playwright API <!-- GEN:version -->Tip-Of-Tree<!-- GEN:stop-->
# Playwright API <!-- GEN:version -->v0.14.0<!-- GEN:stop-->
##### Table of Contents

View file

@ -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": {

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}