From 3dd59cbf6806615cba62321a1a52a3363c588603 Mon Sep 17 00:00:00 2001 From: James Turk Date: Wed, 13 Oct 2021 16:35:35 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.5=20=E2=86=92=200.8.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/cli.md | 4 ++-- pyproject.toml | 2 +- src/spatula/cli.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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: