Skip to content

Commit

Permalink
preparation for a release
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkasyanchuk committed Apr 17, 2022
1 parent a1a706a commit d6909b0
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 15 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
- master
- ....

- 0.9.7 (unreleased)
- 0.9.8
- Fix a file extension issue in Metadata#read_image https://github.com/igorkasyanchuk/active_storage_validations/pull/148/files
- Dynamic exception class https://github.com/igorkasyanchuk/active_storage_validations/pull/150
- Display All Validation Errors https://github.com/igorkasyanchuk/active_storage_validations/pull/152

- 0.9.7
- tests for Rails 7 and Ruby 3.1 https://github.com/igorkasyanchuk/active_storage_validations/pull/143
- Fix pt-BR translations https://github.com/igorkasyanchuk/active_storage_validations/pull/132
- Remove references to image/jpg content type https://github.com/igorkasyanchuk/active_storage_validations/pull/144
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_storage_validations (0.9.6)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -55,7 +55,7 @@ GEM
crass (1.0.6)
erubi (1.10.0)
ffi (1.15.5)
globalid (0.5.2)
globalid (1.0.0)
activesupport (>= 5.0)
i18n (1.8.7)
concurrent-ruby (~> 1.0)
Expand Down Expand Up @@ -140,4 +140,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.25
2.3.7
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ You are welcome to contribute.
- https://github.com/NARKOZ
- https://github.com/stephensolis
- https://github.com/kwent
= https://github.com/Animesh-Ghosh

## License

Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_5_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_validations (0.9.7)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -142,4 +142,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.25
2.3.7
4 changes: 2 additions & 2 deletions gemfiles/rails_6_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_validations (0.9.7)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -143,4 +143,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.25
2.3.7
4 changes: 2 additions & 2 deletions gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_validations (0.9.7)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -144,4 +144,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.25
2.3.7
4 changes: 2 additions & 2 deletions gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_validations (0.9.7)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -135,4 +135,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.3.6
2.3.7
4 changes: 2 additions & 2 deletions gemfiles/rails_next.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ GIT
PATH
remote: ..
specs:
active_storage_validations (0.9.7)
active_storage_validations (0.9.8)
activejob (>= 5.2.0)
activemodel (>= 5.2.0)
activestorage (>= 5.2.0)
Expand Down Expand Up @@ -214,4 +214,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.3.6
2.3.7
2 changes: 1 addition & 1 deletion lib/active_storage_validations/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveStorageValidations
VERSION = '0.9.7'
VERSION = '0.9.8'
end

0 comments on commit d6909b0

Please sign in to comment.