diff --git a/Changelog.md b/Changelog.md index 4e43bc3..e640d86 100644 --- a/Changelog.md +++ b/Changelog.md @@ -145,3 +145,4 @@ Minor version changes: - 1.14.11 Created SlackSender class for easier reusage of slack messaging - 1.14.12 SlackSender: allow to send attachments - 1.14.13 Extended monitor to be able to generate reports +- 1.14.14 Monitor improvements: target_spider_stats can be a regex, and allow to print report tables suitable for copy/paste over spreadsheet diff --git a/setup.py b/setup.py index 2d7f842..7c824f4 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="shub-workflow", - version="1.14.13.4", + version="1.14.14", 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 cab1778..94895c7 100644 --- a/shub_workflow/__init__.py +++ b/shub_workflow/__init__.py @@ -1 +1 @@ -__version__ = "1.14.13.4" +__version__ = "1.14.14"