From 0dc783c194897eea58589af45ad81861ec98c53a Mon Sep 17 00:00:00 2001 From: Sergio Cambra Date: Tue, 3 Dec 2024 20:39:04 +0100 Subject: [PATCH] bump to 4.0.0.rc1 --- Gemfile.lock | 2 +- gemfiles/Gemfile.rails-6.1.x.lock | 2 +- gemfiles/Gemfile.rails-7.0.x.lock | 2 +- gemfiles/Gemfile.rails-7.1.x.lock | 2 +- gemfiles/Gemfile.rails-7.2.x.lock | 2 +- lib/active_scaffold/version.rb | 8 ++++---- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8c6a2f6a4..f6dffab1f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GIT PATH remote: . specs: - active_scaffold (3.7.9) + active_scaffold (4.0.0.rc1) ice_nine (~> 0.11) rails (>= 5.2.0) request_store (~> 1.3) diff --git a/gemfiles/Gemfile.rails-6.1.x.lock b/gemfiles/Gemfile.rails-6.1.x.lock index bfa392f14..c2a2e8b0d 100644 --- a/gemfiles/Gemfile.rails-6.1.x.lock +++ b/gemfiles/Gemfile.rails-6.1.x.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_scaffold (3.7.9) + active_scaffold (4.0.0.rc1) ice_nine (~> 0.11) rails (>= 5.2.0) request_store (~> 1.3) diff --git a/gemfiles/Gemfile.rails-7.0.x.lock b/gemfiles/Gemfile.rails-7.0.x.lock index a0538aec3..1065b63dc 100644 --- a/gemfiles/Gemfile.rails-7.0.x.lock +++ b/gemfiles/Gemfile.rails-7.0.x.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_scaffold (3.7.9) + active_scaffold (4.0.0.rc1) ice_nine (~> 0.11) rails (>= 5.2.0) request_store (~> 1.3) diff --git a/gemfiles/Gemfile.rails-7.1.x.lock b/gemfiles/Gemfile.rails-7.1.x.lock index e73bc1850..8a024a057 100644 --- a/gemfiles/Gemfile.rails-7.1.x.lock +++ b/gemfiles/Gemfile.rails-7.1.x.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_scaffold (3.7.9) + active_scaffold (4.0.0.rc1) ice_nine (~> 0.11) rails (>= 5.2.0) request_store (~> 1.3) diff --git a/gemfiles/Gemfile.rails-7.2.x.lock b/gemfiles/Gemfile.rails-7.2.x.lock index 7c5f4305c..0da849e39 100644 --- a/gemfiles/Gemfile.rails-7.2.x.lock +++ b/gemfiles/Gemfile.rails-7.2.x.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_scaffold (3.7.9) + active_scaffold (4.0.0.rc1) ice_nine (~> 0.11) rails (>= 5.2.0) request_store (~> 1.3) diff --git a/lib/active_scaffold/version.rb b/lib/active_scaffold/version.rb index a003e44fd..4c864c8c5 100644 --- a/lib/active_scaffold/version.rb +++ b/lib/active_scaffold/version.rb @@ -1,9 +1,9 @@ module ActiveScaffold module Version - MAJOR = 3 - MINOR = 7 - PATCH = 9 - FIX = nil + MAJOR = 4 + MINOR = 0 + PATCH = 0 + FIX = 'rc1' STRING = [MAJOR, MINOR, PATCH, FIX].compact.join('.') end