From 8a75c9155b96169f6c37f3f070a63e3e9163bad8 Mon Sep 17 00:00:00 2001 From: joshua Date: Tue, 28 Jul 2026 16:17:37 +0200 Subject: [PATCH] Bump version to 1.3.1 --- CHANGELOG.md | 6 +++++- backend/package.json | 2 +- frontend/package.json | 2 +- package.json | 5 +++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 286655a..7a7b25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,13 @@ and this project follows [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [1.3.1] - 2026-07-28 + ### Fixed - Self-service kiosk: closed events no longer appear in the event picker — only open events are selectable. - Self-service kiosk: added a "Look up existing account" search field (by email or phone, triggered only by Enter or the Search button — never as-you-type) that autofills a returning visitor's name, contact details, and notification preference from their exact matching account, instead of requiring staff to re-enter details already on file. +- Self-service kiosk: when the account lookup finds no match, the typed query now carries over into whichever of Email/Phone it resembles (instead of being discarded), while Name and everything else resets blank for a fresh entry. ## [1.3.0] - 2026-07-27 @@ -74,7 +77,8 @@ and this project follows [Semantic Versioning](https://semver.org/). - Initial release of the Hope Family Church event management app (Next.js frontend + Express/Prisma backend). -[Unreleased]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.3.0...main +[Unreleased]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.3.1...main +[1.3.1]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.3.0...v1.3.1 [1.3.0]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.2.0...v1.3.0 [1.2.0]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.1.0...v1.2.0 [1.1.0]: https://git.crosscode.co.za/joshua/hope-events/compare/v1.0.1...v1.1.0 diff --git a/backend/package.json b/backend/package.json index 867222d..2fbdaaf 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "event-management-backend", - "version": "1.3.0", + "version": "1.3.1", "description": "Event Management System Backend", "main": "src/index.js", "scripts": { diff --git a/frontend/package.json b/frontend/package.json index ea98532..07024ea 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "hope-events-frontend", - "version": "1.3.0", + "version": "1.3.1", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/package.json b/package.json index bd43018..dba94a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hope-events", - "version": "1.3.0", + "version": "1.3.1", "main": "index.js", "scripts": { "dev:backend": "cd backend && npm run dev", @@ -8,7 +8,8 @@ "start:backend": "cd backend && npm run start", "start:frontend": "cd frontend && npm run start", "start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"", - "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"" + "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"", + "build": "cd frontend && npm run build && cd .. && cd backend && npm run prisma:generate" }, "keywords": [], "author": "",