diff --git a/docs/cli.md b/docs/cli.md index 3faf013..fed3c88 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.5 + spatula, version 0.8.6 ``` Or with poetry: ``` console ~/scrape-proj $ poetry run spatula --version - spatula, version 0.8.5 + spatula, version 0.8.6 ``` The CLI provides four useful subcommands for different stages of development: diff --git a/pyproject.toml b/pyproject.toml index 038d545..5cfbe00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spatula" -version = "0.8.5" +version = "0.8.6" 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 87a03d8..44f722d 100644 --- a/src/spatula/cli.py +++ b/src/spatula/cli.py @@ -18,7 +18,7 @@ from .pages import Page, ListPage -VERSION = "0.8.5" +VERSION = "0.8.6" def scraper_params(func: typing.Callable) -> typing.Callable: