From 95082fc7af97abdbc07f09aad67b8e12ecff0004 Mon Sep 17 00:00:00 2001 From: James Turk Date: Wed, 10 Jul 2024 03:17:08 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.0=20=E2=86=92=200.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/cli.md | 4 ++-- src/spatula/cli.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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: