diff --git a/CHANGES.md b/CHANGES.md index 0ebfb0a..d68350a 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ - master - - add ProcessableImageValidator + +- 1.0.1 + - add ProcessableImageValidator https://github.com/igorkasyanchuk/active_storage_validations/pull/168 + - fix slowness https://github.com/igorkasyanchuk/active_storage_validations/pull/169 - 1.0.0 - allow Procs as an input for validation options https://github.com/igorkasyanchuk/active_storage_validations/pull/135/files diff --git a/README.md b/README.md index 31bcf30..d090da8 100755 --- a/README.md +++ b/README.md @@ -398,6 +398,8 @@ You are welcome to contribute. = https://github.com/gr8bit = https://github.com/codegeek319 = https://github.com/clwy-cn += https://github.com/kukicola += https://github.com/sobrinho ## License diff --git a/gemfiles/rails_6_0.gemfile.lock b/gemfiles/rails_6_0.gemfile.lock index 2d7b06f..929e0d4 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.0) + active_storage_validations (1.0.1) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) diff --git a/gemfiles/rails_6_1.gemfile.lock b/gemfiles/rails_6_1.gemfile.lock index 705bbe2..97ecf2e 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.0) + active_storage_validations (1.0.1) activejob (>= 5.2.0) activemodel (>= 5.2.0) activestorage (>= 5.2.0) diff --git a/gemfiles/rails_7_0.gemfile.lock b/gemfiles/rails_7_0.gemfile.lock index 3ba01b5..1b09bd2 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.0) + active_storage_validations (1.0.1) 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 e7069e0..8703035 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.0) + active_storage_validations (1.0.1) 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 801e9fc..91e266a 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.0' + VERSION = '1.0.1' end