Show Clinch, Rails and Ruby versions in sidebar footer; bump to 0.11.0

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dan Milne
2026-05-26 23:39:11 +10:00
parent 9663110938
commit bbfb564e1c
3 changed files with 13 additions and 1 deletions

View File

@@ -115,6 +115,10 @@
</li>
</ul>
</li>
<li class="mt-auto pt-4 border-t border-gray-200 dark:border-gray-700">
<%= render "shared/version_info" %>
</li>
</ul>
</nav>
</div>
@@ -233,6 +237,10 @@
<% end %>
</li>
</ul>
<div class="mt-6 pt-4 border-t border-gray-200 dark:border-gray-700">
<%= render "shared/version_info" %>
</div>
</nav>
</div>
</div>

View File

@@ -0,0 +1,4 @@
<div class="px-2 text-xs text-gray-500 dark:text-gray-500 space-y-0.5">
<div>Clinch <%= Clinch::VERSION %></div>
<div>Rails <%= Rails.version %> &middot; Ruby <%= RUBY_VERSION %></div>
</div>

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Clinch
VERSION = "0.10.2"
VERSION = "0.11.0"
end