From 4d0e326cb95792030a9a2491aea611c5f451fad8 Mon Sep 17 00:00:00 2001 From: Konstantinos Arvanitakis Date: Wed, 9 Sep 2026 23:25:22 +0300 Subject: [PATCH] Bump version to 0.16.1 --- CHANGELOG.md | 10 ++++++++++ composer.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 080cb57..e643572 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [0.16.1] - 2026-09-09 + +### Fixed +- OTP login page (`resources/views/auth/filament/pages/login.blade.php`) had no visible spacing + between the email/OTP input, error text, and buttons following the Filament v3 → v4 upgrade. + The view relied on a bare `grid gap-y-4` Tailwind utility class, but since this view ships from + the `boboko-core` package rather than a consuming app, that class was never present in any + host app's compiled Tailwind output. Replaced with an inline `style` (flex column, `row-gap: + 1rem`) so the layout no longer depends on the consuming app's Tailwind content scanning. + ## [0.16.0] - 2026-09-08 ### Added diff --git a/composer.json b/composer.json index c07ff96..4c3353b 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "boboko/core", "description": "Core module — authentication and shared panel behaviour", "type": "library", - "version": "0.16.0", + "version": "0.16.1", "autoload": { "psr-4": { "Modules\\Core\\": "src/"