Skip to content

Commit

Permalink
Prepare version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paweł Świątkowski committed Oct 5, 2017
1 parent c26a959 commit 8957e09
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0

* Added support for Shrine versions 2.7.0 and up, while dropping support for lower versions (@famano, see #6)

## 0.3.0

* Fixed incompatibility with Hanami 1.0.1+ leading to `RuntimeError: can't modify frozen Hash` error upon deletion
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in hanami-shrine.gemspec
gemspec
gem 'shrine', '>= 2.0.0'
gem 'shrine', '>= 2.7.0'
gem 'sqlite3'
gem 'pry'
gem 'image_processing'
Expand Down
2 changes: 1 addition & 1 deletion hanami-shrine.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency 'shrine'
spec.add_dependency 'shrine', '>= 2.7.0'
spec.add_dependency 'hanami-model', '>= 1.0'
spec.add_dependency "hanami-utils", '>= 1.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/hanami/shrine/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Hanami
module Shrine
VERSION = "0.3.0"
VERSION = '0.4.0'
end
end

0 comments on commit 8957e09

Please sign in to comment.