From 6fb77ad1742417ee6a4ef0e0d713c74deadb3a42 Mon Sep 17 00:00:00 2001 From: Igor Kasyanchuk Date: Tue, 24 Oct 2023 23:06:42 +0300 Subject: [PATCH] new release preparation --- Gemfile.lock | 10 +++++++++- README.md | 4 ++++ gemfiles/rails_6_0.gemfile.lock | 6 +----- gemfiles/rails_6_1.gemfile.lock | 6 +----- gemfiles/rails_7_0.gemfile.lock | 2 +- gemfiles/rails_next.gemfile.lock | 2 +- lib/active_storage_validations/version.rb | 2 +- 7 files changed, 18 insertions(+), 14 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index ba0f1258..df66c8fa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_storage_validations (1.0.3) + active_storage_validations (1.1.0) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) @@ -53,6 +53,7 @@ GEM thor (>= 0.14.6) concurrent-ruby (1.1.7) crass (1.0.6) + docile (1.4.0) erubi (1.10.0) ffi (1.15.5) globalid (1.0.0) @@ -113,6 +114,12 @@ GEM ruby-progressbar (1.11.0) ruby-vips (2.1.4) ffi (~> 1.12) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-html (0.12.3) + simplecov_json_formatter (0.1.4) sqlite3 (1.4.2) thor (1.0.1) tzinfo (2.0.4) @@ -134,6 +141,7 @@ DEPENDENCIES pry rubocop ruby-vips (>= 2.1.0) + simplecov sqlite3 BUNDLED WITH diff --git a/README.md b/README.md index 6f97a725..97642890 100755 --- a/README.md +++ b/README.md @@ -443,6 +443,10 @@ You are welcome to contribute. - https://github.com/iainbeeston - https://github.com/marckohlbrugge - https://github.com/Mth0158 +- https://github.com/technicalpickles +- https://github.com/ricsdeol +- https://github.com/Fonsan + ## License diff --git a/gemfiles/rails_6_0.gemfile.lock b/gemfiles/rails_6_0.gemfile.lock index 6b5d8420..22ef6d94 100644 --- a/gemfiles/rails_6_0.gemfile.lock +++ b/gemfiles/rails_6_0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_storage_validations (1.0.4) + active_storage_validations (1.1.0) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) @@ -73,10 +73,6 @@ GEM nokogiri (1.13.8) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.13.8-x86_64-darwin) - racc (~> 1.4) - nokogiri (1.13.8-x86_64-linux) - racc (~> 1.4) parallel (1.20.1) parser (3.0.0.0) ast (~> 2.4.1) diff --git a/gemfiles/rails_6_1.gemfile.lock b/gemfiles/rails_6_1.gemfile.lock index 0ed713e2..4409bfc7 100644 --- a/gemfiles/rails_6_1.gemfile.lock +++ b/gemfiles/rails_6_1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_storage_validations (1.0.4) + active_storage_validations (1.1.0) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) @@ -75,10 +75,6 @@ GEM nokogiri (1.13.8) mini_portile2 (~> 2.8.0) racc (~> 1.4) - nokogiri (1.13.8-x86_64-darwin) - racc (~> 1.4) - nokogiri (1.13.8-x86_64-linux) - racc (~> 1.4) parallel (1.20.1) parser (3.0.0.0) ast (~> 2.4.1) diff --git a/gemfiles/rails_7_0.gemfile.lock b/gemfiles/rails_7_0.gemfile.lock index b89c3885..0ddc86a7 100644 --- a/gemfiles/rails_7_0.gemfile.lock +++ b/gemfiles/rails_7_0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - active_storage_validations (1.0.4) + active_storage_validations (1.1.0) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) diff --git a/gemfiles/rails_next.gemfile.lock b/gemfiles/rails_next.gemfile.lock index 676be186..d99e4f8f 100755 --- a/gemfiles/rails_next.gemfile.lock +++ b/gemfiles/rails_next.gemfile.lock @@ -92,7 +92,7 @@ GIT PATH remote: .. specs: - active_storage_validations (1.0.4) + active_storage_validations (1.1.0) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) diff --git a/lib/active_storage_validations/version.rb b/lib/active_storage_validations/version.rb index fa8e7107..6e3b30ac 100755 --- a/lib/active_storage_validations/version.rb +++ b/lib/active_storage_validations/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveStorageValidations - VERSION = '1.0.4' + VERSION = '1.1.0' end