upgrade notes: - if you have an old .urlwatch/lib/hooks.py you will need to either update or remove it (new-style configurations with filters in urls.yaml don't generally use this file, but you may have an old one lying around) - simple filter definitions like this: +---- | kind: url | url: http://example.org/foo | filter: html2text +---- are deprecated and should be converted to this style to avoid urlwatch whining about them:: +---- | kind: url | url: http://example.org/foo | filter: | - html2text +----