From b86d32f396cec36b07e7daac0a00798ba4ce8c36 Mon Sep 17 00:00:00 2001 From: James Turk Date: Mon, 9 Aug 2021 13:08:16 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.4=20=E2=86=92=200.8.5?= 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 89fb149..3faf013 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.4 + spatula, version 0.8.5 ``` Or with poetry: ``` console ~/scrape-proj $ poetry run spatula --version - spatula, version 0.8.4 + spatula, version 0.8.5 ``` The CLI provides four useful subcommands for different stages of development: diff --git a/pyproject.toml b/pyproject.toml index ff69dc8..e8f0ff9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spatula" -version = "0.8.4" +version = "0.8.5" 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 dd73a99..35a8779 100644 --- a/src/spatula/cli.py +++ b/src/spatula/cli.py @@ -18,7 +18,7 @@ from .pages import Page, ListPage -VERSION = "0.8.4" +VERSION = "0.8.5" def scraper_params(func: typing.Callable) -> typing.Callable: