v1.1.2
Bug Fix
Workflow emails never send when WP timezone ≠ server timezone — queue items were stored with date() (PHP server timezone) but checked for due status against current_time('mysql') (WordPress timezone setting). On most hosts where the server runs UTC but WordPress is set to a local timezone, scheduled_at was always in the future from WP's perspective and items never processed. Both sides now use UTC (gmdate()) consistently.