diff --git a/Changelog.md b/Changelog.md index 06df7b2..1ce65c4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -139,3 +139,4 @@ Minor version changes: - 1.14.5 Finished job metadata hook - 1.14.6 Allow to use project entry keyword in scrapinghub.yml as alternative to project numeric id, when passing command line --project-id option. - 1.14.7 Mixin for provision of Slack alert capabilities in monitor. +- 1.14.8 Allow to load settings from SC when running script on local environment. diff --git a/setup.py b/setup.py index 13a50c4..b727412 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="shub-workflow", - version="1.14.7.1", + version="1.14.8", description="Workflow manager for Zyte ScrapyCloud tasks.", long_description=open("README.md").read(), long_description_content_type="text/markdown", diff --git a/shub_workflow/__init__.py b/shub_workflow/__init__.py index f06f660..4177ed5 100644 --- a/shub_workflow/__init__.py +++ b/shub_workflow/__init__.py @@ -1 +1 @@ -__version__ = "1.14.7.1" +__version__ = "1.14.8"