From 2f098c00a3c54148f3e811ecf9e4c0b339a098f9 Mon Sep 17 00:00:00 2001 From: Randy Stauner Date: Thu, 6 Aug 2026 19:44:56 -0700 Subject: [PATCH] Bump version to 3.0.0 BREAKING CHANGES: - Ruby 3.1 support has been dropped; cli-ui now requires Ruby >= 3.2. - The documented entrypoint remains require 'cli/ui'. Consumers requiring internal files directly, such as require 'cli/ui/color', may need to require 'cli/ui' first now that internal files no longer bootstrap the top-level file themselves. - Passing timing: nil to CLI::UI.frame or CLI::UI::Frame.open now uses the default timing behavior. Pass timing: false to suppress elapsed timing. --- Gemfile.lock | 2 +- lib/cli/ui/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2d8a5d34..bded6820 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - cli-ui (2.7.0) + cli-ui (3.0.0) GEM remote: https://rubygems.org/ diff --git a/lib/cli/ui/version.rb b/lib/cli/ui/version.rb index ce080836..cce4cacd 100644 --- a/lib/cli/ui/version.rb +++ b/lib/cli/ui/version.rb @@ -3,6 +3,6 @@ module CLI module UI - VERSION = '2.7.0' + VERSION = '3.0.0' end end