Skip to content
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## 3.0.0 (July 24th, 2017)
## 3.1.0 (August 4, 2017)
- Update Filestack::Ruby dependency to latest version to address namespacing issue

## 3.0.0 (July 24, 2017)
- Update to use v3 of Filestack File Picker
- Add filestack_picker_element as a general uploading button
- Various additions and removals surrounding the aforementioned elements
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ This is the official Rails plugin for Filestack - API and content management sys
* [Documentation](https://www.filestack.com/docs)
* [API Reference](https://filestack.github.io/)

## IMPORTANT
Users of 3.0.0 wishing to upgrade to 3.1.0+ should note that the Filestack::Ruby dependency has been updated to no longer interfere with namespace. However, if you were using that dependency in your Rails app, you will need to change any Client and Filelink class declarations to FilestackClient and FilestackFilelink, as per documented [here](https://github.com/filestack/filestack-ruby/blob/master/README.md)

## Installing

Add this line to your application's Gemfile:

```ruby
gem 'filestack-rails', require: 'filestack-rails'
gem 'filestack-rails'
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.1.0
2 changes: 1 addition & 1 deletion filestack-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]

s.add_dependency 'rails', '>= 4.0'
s.add_dependency "filestack", "~> 2.0.1"
s.add_dependency "filestack", "~> 2.1.0"

s.add_development_dependency 'coveralls'
s.add_development_dependency 'sqlite3'
Expand Down
2 changes: 1 addition & 1 deletion lib/filestack_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FilestackRails
VERSION = '3.0.0'
VERSION = '3.1.0'
end