diff --git a/Browser/version.py b/Browser/version.py index 52e477ba3..eabf3d3ab 100644 --- a/Browser/version.py +++ b/Browser/version.py @@ -1 +1 @@ -__version__ = "16.1.0-dev" +__version__ = "16.0.2" diff --git a/docker/Dockerfile.latest_release b/docker/Dockerfile.latest_release index e09856a9b..4cd319a82 100644 --- a/docker/Dockerfile.latest_release +++ b/docker/Dockerfile.latest_release @@ -14,6 +14,6 @@ ENV NODE_PATH=/usr/lib/node_modules USER pwuser RUN pip3 install --no-cache-dir --upgrade pip wheel RUN pip3 --version -RUN pip3 install --no-cache-dir --user --upgrade robotframework robotframework-browser==16.1.0-dev +RUN pip3 install --no-cache-dir --user --upgrade robotframework robotframework-browser==16.0.2 RUN python3 -m Browser.entry init diff --git a/docs/releasenotes/Browser-16.0.2.rst b/docs/releasenotes/Browser-16.0.2.rst new file mode 100644 index 000000000..e7d482812 --- /dev/null +++ b/docs/releasenotes/Browser-16.0.2.rst @@ -0,0 +1,58 @@ +====================== +Browser library 16.0.2 +====================== + + +.. default-role:: code + + +Browser_ is a web testing library for `Robot Framework`_ that utilizes +the Playwright_ tool internally. Browser library 16.0.2 is a new release with +**UPDATE** enhancements and bug fixes. +All issues targeted for Browser library v16.0.2 can be found +from the `issue tracker`_. +For first time installation with pip_, just run +:: + pip install robotframework-browser + rfbrowser init +to install the latest available release. If you upgrading +from previous release with pip_, run +:: + pip install --upgrade robotframework-browser + rfbrowser clean-node + rfbrowser init +Alternatively you can download the source distribution from PyPI_ and +install it manually. Browser library 16.0.2 was released on Wednesday March 15, 2023. +Browser supports Python 3.7+, Node 14/16 LTS and Robot Framework 4.0+. +Library was tested with Playwright 1.31.2 + +.. _Robot Framework: http://robotframework.org +.. _Browser: https://github.com/MarketSquare/robotframework-browser +.. _Playwright: https://github.com/microsoft/playwright +.. _pip: http://pip-installer.org +.. _PyPI: https://pypi.python.org/pypi/robotframework-browser +.. _issue tracker: https://github.com/MarketSquare/robotframework-browser/milestones/v16.0.2 + + +.. contents:: + :depth: 2 + :local: + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#2701`_ + - --- + - --- + - Docker image is not pushing other than latest tags correctly + +Altogether 1 issue. View on the `issue tracker `__. + +.. _#2701: https://github.com/MarketSquare/robotframework-browser/issues/2701 diff --git a/docs/versions/Browser-16.0.2.html b/docs/versions/Browser-16.0.2.html new file mode 100644 index 000000000..bc1ff8570 --- /dev/null +++ b/docs/versions/Browser-16.0.2.html @@ -0,0 +1,1845 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Opening library documentation failed

+ +
+ + + + + + + + + + + + + + + diff --git a/package-lock.json b/package-lock.json index 2fc73dc74..bc0ea913f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "robotframework-playwright", - "version": "16.0.1", + "version": "16.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "robotframework-playwright", - "version": "16.0.1", + "version": "16.0.2", "license": "Apache-2.0", "dependencies": { "@grpc/grpc-js": "^1.8.12", diff --git a/package.json b/package.json index 82b4f0a46..372f2f3e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "robotframework-playwright", - "version": "16.1.0-dev", + "version": "16.0.2", "main": "index.ts", "author": "Mikko Korpela ", "license": "Apache-2.0", diff --git a/setup.py b/setup.py index e6dcea3c9..7e7e6ef30 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup_kwargs = { "name": "robotframework-browser", - "version": "16.1.0-dev", + "version": "16.0.2", "description": "Robot Framework Browser library powered by Playwright. Aiming for speed, reliability and visibility.", "long_description": long_description, "long_description_content_type": "text/markdown",