Skip to content

Commit

Permalink
Bump version: 0.8.9 → 0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Jan 31, 2022
1 parent a4ddbd0 commit 3cee592
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.9
spatula, version 0.8.10
```

Or with poetry:

``` console
~/scrape-proj $ poetry run spatula --version
spatula, version 0.8.9
spatula, version 0.8.10
```

The CLI provides four useful subcommands for different stages of development:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spatula"
version = "0.8.9"
version = "0.8.10"
description = "A modern Python library for writing maintainable web scrapers."
authors = ["James Turk <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/spatula/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .pages import Page, ListPage


VERSION = "0.8.9"
VERSION = "0.8.10"


def scraper_params(func: typing.Callable) -> typing.Callable:
Expand Down

0 comments on commit 3cee592

Please sign in to comment.