Skip to content

Commit

Permalink
Bump version number, fix __init__.pyi path
Browse files Browse the repository at this point in the history
  • Loading branch information
xylix committed Jul 24, 2020
1 parent d3915e6 commit fbd0dae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Robot Framework Browser
env:
VERSION: 0.9.0
VERSION: 0.10.0
run: |
pip install "artifacts/robotframework_browser-$VERSION-py3-none-any.whl"
pip install -U robotframework-pabot
Expand Down
2 changes: 1 addition & 1 deletion Browser/gen_stub.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,6 @@ class Browser:
def __init__(self, {str(inspect.signature(br.__init__))[1:]}: ...\n
"""

with open("__init__.pyi", "w") as stub_file:
with open("Browser/__init__.pyi", "w") as stub_file:
stub_file.write(pyi_boilerplate)
stub_file.writelines(function_list)
2 changes: 1 addition & 1 deletion Browser/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.9.0"
VERSION = "0.10.0"
2 changes: 1 addition & 1 deletion docs/Browser.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "robotframework-playwright",
"version": "0.9.0",
"version": "0.10.0",
"main": "index.ts",
"author": "Mikko Korpela <[email protected]>",
"license": "Apache-2.0",
Expand Down

0 comments on commit fbd0dae

Please sign in to comment.