Skip to content

Commit d2a42e5

Browse files
authored
[Release] v1.6.0 (#501)
Bump RubyUI to 1.6.0 (minor: new component + new component options since v1.5.0). - gem/lib/ruby_ui.rb → 1.6.0; regenerate gem/ and docs/ Gemfile.lock - docs home hero badge → headline features (InputOtp, Combobox placement) - rebuild mcp/data/registry.json Highlights since v1.5.0: - New component: InputOtp (#456) - Combobox: configurable popover placement (#480), CheckboxGroup reuse for required ComboboxCheckbox (#479) - DataTable: custom label + initial column visibility in DataTableColumnToggle (#466) - Popover: data-state/data-side, clear closeTimeout on disconnect, close on Escape (#495) - Accordion: no longer clips content that grows after opening (#500, #490) - Toast: toaster state initialized in initialize() so server-rendered toasts don't throw (#499) - Docs: Stimulus controllers symlinked to gem source, no more hand-copied drift (#493)
1 parent 1c334d3 commit d2a42e5

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ GIT
1515
PATH
1616
remote: ../gem
1717
specs:
18-
ruby_ui (1.5.0)
18+
ruby_ui (1.6.0)
1919

2020
PATH
2121
remote: ../mcp

docs/app/views/pages/home.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def view_template
77
div(class: "container flex max-w-[64rem] flex-col items-center gap-4 text-center mx-auto") do
88
Link(href: docs_changelog_path, variant: :outline, class: "rounded-2xl px-4 py-1.5 text-sm font-medium") do
99
span(class: "sm:hidden") { "New components available" }
10-
span(class: "hidden sm:inline") { "New Bubble, Message, Empty components, and more" }
10+
span(class: "hidden sm:inline") { "New InputOtp component, configurable Combobox placement, and more" }
1111
svg(xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", class: "ml-2 h-4 w-4") { |s|
1212
s.path(d: "M5 12h14")
1313
s.path(d: "m12 5 7 7-7 7")

gem/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
ruby_ui (1.5.0)
4+
ruby_ui (1.6.0)
55

66
GEM
77
remote: https://rubygems.org/

gem/lib/ruby_ui.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
require "date"
44

55
module RubyUI
6-
VERSION = "1.5.0"
6+
VERSION = "1.6.0"
77
end

mcp/data/registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.5.0",
2+
"version": "1.6.0",
33
"components": {
44
"accordion": {
55
"name": "Accordion",

0 commit comments

Comments
 (0)