diff --git a/docs/cli.md b/docs/cli.md index 14edd6d..2bdbaab 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.8.9 + spatula, version 0.8.10 ``` Or with poetry: ``` console ~/scrape-proj $ poetry run spatula --version - spatula, version 0.8.9 + spatula, version 0.8.10 ``` The CLI provides four useful subcommands for different stages of development: diff --git a/pyproject.toml b/pyproject.toml index 55b2790..1c4e92e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spatula" -version = "0.8.9" +version = "0.8.10" description = "A modern Python library for writing maintainable web scrapers." authors = ["James Turk "] license = "MIT" diff --git a/src/spatula/cli.py b/src/spatula/cli.py index 95c7cd7..75776c3 100644 --- a/src/spatula/cli.py +++ b/src/spatula/cli.py @@ -19,7 +19,7 @@ from .pages import Page, ListPage -VERSION = "0.8.9" +VERSION = "0.8.10" def scraper_params(func: typing.Callable) -> typing.Callable: