From 6fe5a9010be205a5ea5cc70a39e2ea00a2bcc13e Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 5 Oct 2025 01:11:01 +0900 Subject: [PATCH 1/3] Bump up to 0.6.3 --- lib/pp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pp.rb b/lib/pp.rb index 6060282..ba096bb 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -64,7 +64,7 @@ class PP < PrettyPrint # The version string - VERSION = "0.6.2" + VERSION = "0.6.3" # Returns the usable width for +out+. # As the width of +out+: From 38a1c423df97fe47b199eb71b98f40af1743f1dc Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 4 Oct 2025 21:51:22 +0900 Subject: [PATCH 2/3] Drop support for ruby 2 Fix GH-54 --- .github/workflows/test.yml | 2 +- pp.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 65fced5..d6c5b6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: uses: ruby/actions/.github/workflows/ruby_versions.yml@master with: engine: cruby - min_version: 2.7 + min_version: 3.0 test: needs: ruby-versions diff --git a/pp.gemspec b/pp.gemspec index 15a3b4d..c15d8f5 100644 --- a/pp.gemspec +++ b/pp.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/ruby/pp" spec.licenses = ["Ruby", "BSD-2-Clause"] - spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") + spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage From fdf8069cb6e0310cb1486edf0baa834a7941edf9 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sat, 4 Oct 2025 22:05:55 +0900 Subject: [PATCH 3/3] Bump up to 0.7.0.dev1 --- lib/pp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pp.rb b/lib/pp.rb index ba096bb..951d942 100644 --- a/lib/pp.rb +++ b/lib/pp.rb @@ -64,7 +64,7 @@ class PP < PrettyPrint # The version string - VERSION = "0.6.3" + VERSION = "0.7.0.dev1" # Returns the usable width for +out+. # As the width of +out+: