Skip to content

Commit f449284

Browse files
committed
Bump version: 0.8.8 → 0.8.9
1 parent 45def30 commit f449284

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Once installed within your Python environment, spatula can be invoked on the com
66

77
``` console
88
(scrape-venv) ~/scrape-proj $ spatula --version
9-
spatula, version 0.8.8
9+
spatula, version 0.8.9
1010
```
1111

1212
Or with poetry:
1313

1414
``` console
1515
~/scrape-proj $ poetry run spatula --version
16-
spatula, version 0.8.8
16+
spatula, version 0.8.9
1717
```
1818

1919
The CLI provides four useful subcommands for different stages of development:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "spatula"
3-
version = "0.8.8"
3+
version = "0.8.9"
44
description = "A modern Python library for writing maintainable web scrapers."
55
authors = ["James Turk <[email protected]>"]
66
license = "MIT"

src/spatula/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from .pages import Page, ListPage
2020

2121

22-
VERSION = "0.8.8"
22+
VERSION = "0.8.9"
2323

2424

2525
def scraper_params(func: typing.Callable) -> typing.Callable:

0 commit comments

Comments
 (0)