diff --git a/CHANGELOG.md b/CHANGELOG.md index b63825b..58b3bc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [1.5.1] - 2026-08-06 + ### Fixed - Scheduling a WhatsApp message was silently sent as an email instead: the scheduled-job store never persisted the `channel` field, so the send worker always fell through to its email branch regardless of what was requested. Scheduled WhatsApp jobs now correctly send via WhatsApp. diff --git a/backend/package.json b/backend/package.json index a21ec16..faa4a91 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "event-management-backend", - "version": "1.5.0", + "version": "1.5.1", "description": "Event Management System Backend", "main": "src/index.js", "scripts": { diff --git a/frontend/package.json b/frontend/package.json index 4438a44..d5ac7cb 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "hope-events-frontend", - "version": "1.5.0", + "version": "1.5.1", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/package.json b/package.json index 66238fc..585f42a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hope-events", - "version": "1.5.0", + "version": "1.5.1", "main": "index.js", "scripts": { "dev:backend": "cd backend && npm run dev",