diff --git a/README.md b/README.md index 5aef5f20ce..1c91958ed8 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ # 🎭 Playwright -[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Chromium version](https://img.shields.io/badge/chromium-83.0.4090.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home) [![Firefox version](https://img.shields.io/badge/firefox-74.0b10-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/) [![WebKit version](https://img.shields.io/badge/webkit-13.0.4-blue.svg?logo=safari)](https://webkit.org/) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) +[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Chromium version](https://img.shields.io/badge/chromium-83.0.4101.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home) [![Firefox version](https://img.shields.io/badge/firefox-75.0b8-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/) [![WebKit version](https://img.shields.io/badge/webkit-13.0.4-blue.svg?logo=safari)](https://webkit.org/) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) -###### [API](https://github.com/microsoft/playwright/blob/v0.12.1/docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases) | [FAQ](#faq) | [Contributing](#contributing) +###### [API](https://github.com/microsoft/playwright/blob/v0.13.0/docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases) | [FAQ](#faq) | [Contributing](#contributing) Playwright is a Node library to automate the [Chromium](https://www.chromium.org/Home), [WebKit](https://webkit.org/) and [Firefox](https://www.mozilla.org/en-US/firefox/new/) browsers with a single API. It enables **cross-browser** web automation that is **ever-green**, **capable**, **reliable** and **fast**. | | ver | Linux | macOS | Win | | ---: | :---: | :---: | :---: | :---: | -| Chromium| 83.0.4090.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: | +| Chromium| 83.0.4101.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | WebKit | 13.0.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | -| Firefox | 74.0b10 | :white_check_mark: | :white_check_mark: | :white_check_mark: | +| Firefox | 75.0b8 | :white_check_mark: | :white_check_mark: | :white_check_mark: | - Headless is supported for all the browsers on all platforms. diff --git a/docs/api.md b/docs/api.md index 621e7088cf..0324326c0f 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1,5 +1,5 @@ -# Playwright API Tip-Of-Tree +# Playwright API v0.13.0 ##### Table of Contents diff --git a/package.json b/package.json index 8f1e8b8277..6bfceaa787 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "playwright-core", - "version": "0.12.1-post", + "version": "0.13.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 c8813c952c..2a9f3fcdff 100644 --- a/packages/playwright-chromium/package.json +++ b/packages/playwright-chromium/package.json @@ -1,6 +1,6 @@ { "name": "playwright-chromium", - "version": "0.12.1-post", + "version": "0.13.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.12.1-post" + "playwright-core": "=0.13.0" } } diff --git a/packages/playwright-firefox/package.json b/packages/playwright-firefox/package.json index 0c68102801..17be4462d4 100644 --- a/packages/playwright-firefox/package.json +++ b/packages/playwright-firefox/package.json @@ -1,6 +1,6 @@ { "name": "playwright-firefox", - "version": "0.12.1-post", + "version": "0.13.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.12.1-post" + "playwright-core": "=0.13.0" } } diff --git a/packages/playwright-webkit/package.json b/packages/playwright-webkit/package.json index 1fa8c1f7b3..84a9495454 100644 --- a/packages/playwright-webkit/package.json +++ b/packages/playwright-webkit/package.json @@ -1,6 +1,6 @@ { "name": "playwright-webkit", - "version": "0.12.1-post", + "version": "0.13.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.12.1-post" + "playwright-core": "=0.13.0" } } diff --git a/packages/playwright/package.json b/packages/playwright/package.json index 312da3a3c9..0033dba4a7 100644 --- a/packages/playwright/package.json +++ b/packages/playwright/package.json @@ -1,6 +1,6 @@ { "name": "playwright", - "version": "0.12.1-post", + "version": "0.13.0", "description": "A high-level API to automate web browsers", "repository": "github:Microsoft/playwright", "main": "index.js", @@ -12,6 +12,6 @@ }, "license": "Apache-2.0", "dependencies": { - "playwright-core": "=0.12.1-post" + "playwright-core": "=0.13.0" } }