From 19edc4abd607f1ba958f1b988c41f4ec1514c105 Mon Sep 17 00:00:00 2001 From: Gregg Kellogg Date: Tue, 5 Dec 2023 15:05:01 -0800 Subject: [PATCH] Updates for version 0.4.0, which is 1.0.0 but retains support for Ruby >= 2.6. This includes the use of `::JSON.generate` instead of `#to_json` and does not implicitly pick up ActiveSupport changes. For #2. --- VERSION | 2 +- json-canonicalization.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 3eefcb9..1d0ba9e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +0.4.0 diff --git a/json-canonicalization.gemspec b/json-canonicalization.gemspec index c09b2d0..61a9ba2 100755 --- a/json-canonicalization.gemspec +++ b/json-canonicalization.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |gem| gem.files = %w(AUTHORS README.md LICENSE VERSION) + Dir.glob('lib/**/*.rb') gem.test_files = Dir.glob('spec/**/*.rb') + Dir.glob('spec/**/*.json') - gem.required_ruby_version = '>= 3.0' + gem.required_ruby_version = '>= 2.6' gem.requirements = [] gem.add_development_dependency 'rspec', '~> 3.12' gem.add_development_dependency 'yard' , '~> 0.9'