diff --git a/docs/cli.md b/docs/cli.md index 50936a1..c5f024c 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -6,14 +6,14 @@ Once installed within your Python environment, spatula can be invoked on the com ``` console (scrape-venv) ~/scrape-proj $ spatula --version - spatula, version 0.9.0 + spatula, version 0.9.1 ``` Or with poetry: ``` console ~/scrape-proj $ poetry run spatula --version - spatula, version 0.9.0 + spatula, version 0.9.1 ``` The CLI provides four useful subcommands for different stages of development: diff --git a/src/spatula/cli.py b/src/spatula/cli.py index 0af19bf..60012ee 100644 --- a/src/spatula/cli.py +++ b/src/spatula/cli.py @@ -19,7 +19,7 @@ from .pages import Page, ListPage -VERSION = "0.9.0" +VERSION = "0.9.1" def scraper_params(func: typing.Callable) -> typing.Callable: