Skip to content

Commit

Permalink
Bump version: 0.8.4 → 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Aug 9, 2021
1 parent 5795c48 commit b86d32f
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.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:
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.4"
version = "0.8.5"
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 @@ -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:
Expand Down

0 comments on commit b86d32f

Please sign in to comment.