From 19de3f1e86180f95d2205c01d76bcbc19bfabf4b Mon Sep 17 00:00:00 2001 From: Mattia Roccoberton Date: Sat, 2 May 2026 18:19:34 +0200 Subject: [PATCH] chore: Bump to version 0.11.0 --- CHANGELOG.md | 13 +++++++++++++ lib/tiny_admin/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d91dffd..bc368213 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ A compact and composable dashboard component for Ruby +## 0.11.0 + +- feat(auth): accept session secret from TINY_ADMIN_SECRET env var +- feat(views): Support for raw html fields +- feat(views): pass context to widgets +- feat(router): support non-GET methods in custom actions +- refactor(core): consolidate Utils usage, extract authorize! helper, harden settings +- fix(settings): preserve auth class when calling reset! +- fix(views): guard against nil values and fix flash CSS classes +- fix(views): apply call option on field values without link_to +- chore(views): extract shared Attributes, ActionsButtons, and ErrorPage +- chore(views): internal improvements to pagination + ## 0.10.1 - refactor: change Phlex template references to view_template diff --git a/lib/tiny_admin/version.rb b/lib/tiny_admin/version.rb index c429adb7..ca870199 100644 --- a/lib/tiny_admin/version.rb +++ b/lib/tiny_admin/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TinyAdmin - VERSION = "0.10.1" + VERSION = "0.11.0" end