@@ -86,7 +86,7 @@ This creates:
8686twine check dist/*
8787
8888# List wheel contents
89- unzip -l dist/stepwright-0 .1.0-py3-none-any.whl
89+ unzip -l dist/stepwright-1 .1.0-py3-none-any.whl
9090```
9191
9292## Testing the Package
@@ -99,7 +99,7 @@ python -m venv test_env
9999source test_env/bin/activate
100100
101101# Install from wheel
102- pip install dist/stepwright-0 .1.0-py3-none-any.whl
102+ pip install dist/stepwright-1 .1.0-py3-none-any.whl
103103
104104# Test import and usage
105105python -c " from stepwright import run_scraper, TabTemplate, BaseStep; print('Success!')"
@@ -117,7 +117,7 @@ python -m venv test_env2
117117source test_env2/bin/activate
118118
119119# Install from source
120- pip install dist/stepwright-0 .1.0.tar.gz
120+ pip install dist/stepwright-1 .1.0.tar.gz
121121
122122# Test
123123python -c " import stepwright; print(stepwright.__version__)"
@@ -196,8 +196,8 @@ git push origin v0.2.0
196196Follow [ Semantic Versioning] ( https://semver.org/ ) :
197197
198198- ** MAJOR** (1.0.0): Incompatible API changes
199- - ** MINOR** (0 .1.0): New features, backward compatible
200- - ** PATCH** (0.0 .1): Bug fixes, backward compatible
199+ - ** MINOR** (1 .1.0): New features, backward compatible
200+ - ** PATCH** (0.1 .1): Bug fixes, backward compatible
201201
202202## Pre-release Checklist
203203
0 commit comments