Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to version 1.2.0 #34

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading