Skip to content

Commit

Permalink
Allow unreleased versions of Rails 7.0 (closes #183)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgriego committed Feb 17, 2021
1 parent 83282ca commit 25ef02d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ActiveAttr 0.15.2 (Unreleased)
# ActiveAttr 0.15.2 (February 17, 2021)

* ActiveAttr now supports Ruby 3.0
* Allow unreleased versions of Rails 7.0

# ActiveAttr 0.15.1 (December 11, 2020) #

Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ source "https://rubygems.org"

gemspec :development_group => :test

gem "activemodel", ">= 5.2.0.beta1", "< 6.2"
gem "activesupport", ">= 5.2.0.beta1", "< 6.2"
gem "actionpack", ">= 5.2.0.beta1", "< 6.2"
gem "activemodel", "~> 6.1.0"
gem "activesupport", "~> 6.1.0"
gem "actionpack", "~> 6.1.0"
gem "activemodel-serializers-xml", :group => :test
gem "rexml", :group => :test
gem "protected_attributes_continued", :group => :test
Expand Down
6 changes: 3 additions & 3 deletions active_attr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = ">= 2.1.0"

gem.add_runtime_dependency "actionpack", ">= 3.0.2", "< 6.2"
gem.add_runtime_dependency "activemodel", ">= 3.0.2", "< 6.2"
gem.add_runtime_dependency "activesupport", ">= 3.0.2", "< 6.2"
gem.add_runtime_dependency "actionpack", ">= 3.0.2", "< 7.0"
gem.add_runtime_dependency "activemodel", ">= 3.0.2", "< 7.0"
gem.add_runtime_dependency "activesupport", ">= 3.0.2", "< 7.0"

gem.add_development_dependency "bundler"
gem.add_development_dependency "factory_bot", "< 5.0"
Expand Down

0 comments on commit 25ef02d

Please sign in to comment.