Skip to content

Commit 8910eff

Browse files
committed
Bump version: 0.8.6 → 0.8.7
1 parent 69f5d63 commit 8910eff

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.6
9+
spatula, version 0.8.7
1010
```
1111

1212
Or with poetry:
1313

1414
``` console
1515
~/scrape-proj $ poetry run spatula --version
16-
spatula, version 0.8.6
16+
spatula, version 0.8.7
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.6"
3+
version = "0.8.7"
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
@@ -18,7 +18,7 @@
1818
from .pages import Page, ListPage
1919

2020

21-
VERSION = "0.8.6"
21+
VERSION = "0.8.7"
2222

2323

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

0 commit comments

Comments
 (0)