Skip to content

Commit ed8efba

Browse files
new release
1 parent 2e20c67 commit ed8efba

8 files changed

+10
-7
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
- master
22

3+
- 1.0.2
4+
- Support using allowing and rejecting together on content type matcher https://github.com/igorkasyanchuk/active_storage_validations/pull/172
5+
36
- 1.0.1
47
- add ProcessableImageValidator https://github.com/igorkasyanchuk/active_storage_validations/pull/168
58
- fix slowness https://github.com/igorkasyanchuk/active_storage_validations/pull/169

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_storage_validations (1.0.0)
4+
active_storage_validations (1.0.2)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,9 @@ end
314314

315315
To run tests in root folder of gem:
316316

317-
* `BUNDLE_GEMFILE=gemfiles/rails_5_2.gemfile bundle exec rake test` to run for Rails 5.2
318317
* `BUNDLE_GEMFILE=gemfiles/rails_6_0.gemfile bundle exec rake test` to run for Rails 6.0
319318
* `BUNDLE_GEMFILE=gemfiles/rails_6_1.gemfile bundle exec rake test` to run for Rails 6.1
319+
* `BUNDLE_GEMFILE=gemfiles/rails_7_0.gemfile bundle exec rake test` to run for Rails 7.0
320320
* `BUNDLE_GEMFILE=gemfiles/rails_next.gemfile bundle exec rake test` to run for Rails main branch
321321

322322
Snippet to run in console:

gemfiles/rails_6_0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (1.0.1)
4+
active_storage_validations (1.0.2)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)

gemfiles/rails_6_1.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (1.0.1)
4+
active_storage_validations (1.0.2)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)

gemfiles/rails_7_0.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (1.0.1)
4+
active_storage_validations (1.0.2)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)

gemfiles/rails_next.gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ GIT
9292
PATH
9393
remote: ..
9494
specs:
95-
active_storage_validations (1.0.1)
95+
active_storage_validations (1.0.2)
9696
activejob (>= 5.2.0)
9797
activemodel (>= 5.2.0)
9898
activestorage (>= 5.2.0)
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ActiveStorageValidations
4-
VERSION = '1.0.1'
4+
VERSION = '1.0.2'
55
end

0 commit comments

Comments
 (0)