Skip to content

Commit

Permalink
Merge pull request #34 from blocknotes/chore/bump-to-version-1.2.0
Browse files Browse the repository at this point in the history
chore: bump to version 1.2.0
  • Loading branch information
blocknotes authored Oct 22, 2023
2 parents 12faf23 + 9979f2d commit 4a6e7e8
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.tool-versions

.bundle/
log/*.log
pkg/
Expand Down
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
An Active Storage service upload/download plugin that stores files in a PostgreSQL or MySQL database.

Main features:
- supports Rails _6.0_, _6.1_ and _7.0_;
- attachment data stored in a binary field (or blob);
- all service methods implemented;
- attachment data stored in a binary field (or blob).
- supports Rails _6_ and _7_.

Useful also with platforms like Heroku (due to their ephemeral file system).

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_0_mysql.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_0_postgres.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_1_mysql.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_1_postgres.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_0_mysql.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_0_postgres.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1_mysql.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1_postgres.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_storage_db (1.1.2)
active_storage_db (1.2.0)
activestorage (>= 6.0)
rails (>= 6.0)

Expand Down
2 changes: 1 addition & 1 deletion lib/active_storage_db/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveStorageDB
VERSION = '1.1.2'
VERSION = '1.2.0'
end

0 comments on commit 4a6e7e8

Please sign in to comment.