From 48ed563bafb7ec54decf5861846582696d69e719 Mon Sep 17 00:00:00 2001 From: Ermolaev Andrey Date: Sun, 12 Jan 2025 23:29:13 +0300 Subject: [PATCH] bump 1.2.0, ruby_version = '>= 3.1.0' --- .rubocop.yml | 2 +- Gemfile.lock | 2 +- active_dry_form.gemspec | 2 +- lib/active_dry_form/version.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 5b1b4b4..55ddc07 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -17,4 +17,4 @@ Rails/Delegate: AllCops: NewCops: enable - TargetRubyVersion: 2.7 + TargetRubyVersion: 3.1 diff --git a/Gemfile.lock b/Gemfile.lock index 256d927..ca60e8b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -27,7 +27,7 @@ GIT PATH remote: . specs: - active_dry_form (1.1.1) + active_dry_form (1.2.0) actionpack activerecord dry-configurable diff --git a/active_dry_form.gemspec b/active_dry_form.gemspec index deb2c1f..cfed6c5 100644 --- a/active_dry_form.gemspec +++ b/active_dry_form.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.description = 'Form validation for Rails with Dry-Validation' spec.homepage = 'https://github.com/corp-gp/active_dry_form' spec.license = 'MIT' - spec.required_ruby_version = '>= 2.7.0' + spec.required_ruby_version = '>= 3.1.0' spec.metadata['allowed_push_host'] = 'https://rubygems.org' diff --git a/lib/active_dry_form/version.rb b/lib/active_dry_form/version.rb index 8b04e92..dea126d 100644 --- a/lib/active_dry_form/version.rb +++ b/lib/active_dry_form/version.rb @@ -2,6 +2,6 @@ module ActiveDryForm - VERSION = '1.1.1' + VERSION = '1.2.0' end