Skip to content

Commit d6909b0

Browse files
preparation for a release
1 parent a1a706a commit d6909b0

9 files changed

+22
-15
lines changed

CHANGES.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
- master
2+
- ....
23

3-
- 0.9.7 (unreleased)
4+
- 0.9.8
5+
- Fix a file extension issue in Metadata#read_image https://github.com/igorkasyanchuk/active_storage_validations/pull/148/files
6+
- Dynamic exception class https://github.com/igorkasyanchuk/active_storage_validations/pull/150
7+
- Display All Validation Errors https://github.com/igorkasyanchuk/active_storage_validations/pull/152
8+
9+
- 0.9.7
410
- tests for Rails 7 and Ruby 3.1 https://github.com/igorkasyanchuk/active_storage_validations/pull/143
511
- Fix pt-BR translations https://github.com/igorkasyanchuk/active_storage_validations/pull/132
612
- Remove references to image/jpg content type https://github.com/igorkasyanchuk/active_storage_validations/pull/144

Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
active_storage_validations (0.9.6)
4+
active_storage_validations (0.9.8)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)
@@ -55,7 +55,7 @@ GEM
5555
crass (1.0.6)
5656
erubi (1.10.0)
5757
ffi (1.15.5)
58-
globalid (0.5.2)
58+
globalid (1.0.0)
5959
activesupport (>= 5.0)
6060
i18n (1.8.7)
6161
concurrent-ruby (~> 1.0)
@@ -140,4 +140,4 @@ DEPENDENCIES
140140
sqlite3
141141

142142
BUNDLED WITH
143-
2.2.25
143+
2.3.7

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ You are welcome to contribute.
377377
- https://github.com/NARKOZ
378378
- https://github.com/stephensolis
379379
- https://github.com/kwent
380+
= https://github.com/Animesh-Ghosh
380381

381382
## License
382383

gemfiles/rails_5_2.gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (0.9.7)
4+
active_storage_validations (0.9.8)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)
@@ -142,4 +142,4 @@ DEPENDENCIES
142142
sqlite3
143143

144144
BUNDLED WITH
145-
2.2.25
145+
2.3.7

gemfiles/rails_6_0.gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (0.9.7)
4+
active_storage_validations (0.9.8)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)
@@ -143,4 +143,4 @@ DEPENDENCIES
143143
sqlite3
144144

145145
BUNDLED WITH
146-
2.2.25
146+
2.3.7

gemfiles/rails_6_1.gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (0.9.7)
4+
active_storage_validations (0.9.8)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)
@@ -144,4 +144,4 @@ DEPENDENCIES
144144
sqlite3
145145

146146
BUNDLED WITH
147-
2.2.25
147+
2.3.7

gemfiles/rails_7_0.gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_storage_validations (0.9.7)
4+
active_storage_validations (0.9.8)
55
activejob (>= 5.2.0)
66
activemodel (>= 5.2.0)
77
activestorage (>= 5.2.0)
@@ -135,4 +135,4 @@ DEPENDENCIES
135135
sqlite3
136136

137137
BUNDLED WITH
138-
2.3.6
138+
2.3.7

gemfiles/rails_next.gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ GIT
9292
PATH
9393
remote: ..
9494
specs:
95-
active_storage_validations (0.9.7)
95+
active_storage_validations (0.9.8)
9696
activejob (>= 5.2.0)
9797
activemodel (>= 5.2.0)
9898
activestorage (>= 5.2.0)
@@ -214,4 +214,4 @@ DEPENDENCIES
214214
sqlite3
215215

216216
BUNDLED WITH
217-
2.3.6
217+
2.3.7
+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 = '0.9.7'
4+
VERSION = '0.9.8'
55
end

0 commit comments

Comments
 (0)