Skip to content

Commit

Permalink
Merge pull request #451 from activeadmin/release/1.9.0
Browse files Browse the repository at this point in the history
Prepare for release 1.9.0
  • Loading branch information
varyonic authored Aug 10, 2018
2 parents 743962e + 6904664 commit 44276af
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 42 deletions.
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- jruby-9.1.7.0
- jruby-9.1.16.0

gemfile:
- test/gemfiles/Gemfile-Rails-4-2
- test/gemfiles/Gemfile-Rails-5-0
- test/gemfiles/Gemfile-Rails-5-1
- test/gemfiles/Gemfile-Rails-5-2

matrix:
fast_finish: true

allow_failures:
- rvm: jruby-9.1.16.0
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Master (unreleased)

# Version 1.9.0

* Support Rails 5.2.1
* Remove support for Ruby < 2.3

# Version 1.8.0

* Support Rails 5.2
* Supports Ruby 2.4
* Remove support for Ruby < 2.2, Rails < 4.2
Expand Down
9 changes: 0 additions & 9 deletions Gemfile

This file was deleted.

2 changes: 1 addition & 1 deletion inherited_resources.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/**/*", "lib/**/*", "README.md", "MIT-LICENSE"]
s.require_paths = ["lib"]

s.required_ruby_version = '>= 2.2'
s.required_ruby_version = '>= 2.3'

s.add_dependency("responders")
s.add_dependency("actionpack", ">= 4.2", "< 5.3")
Expand Down
2 changes: 1 addition & 1 deletion lib/inherited_resources/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module InheritedResources
VERSION = '1.8.0'.freeze
VERSION = '1.9.0'.freeze
end
11 changes: 0 additions & 11 deletions test/gemfiles/Gemfile-Rails-3-2

This file was deleted.

9 changes: 0 additions & 9 deletions test/gemfiles/Gemfile-Rails-4-0

This file was deleted.

8 changes: 0 additions & 8 deletions test/gemfiles/Gemfile-Rails-4-1

This file was deleted.

2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Bundler.setup

require 'minitest/autorun'
require 'mocha/mini_test'
require 'mocha/minitest'
require 'minitest/rg'

ENV["RAILS_ENV"] = "test"
Expand Down

0 comments on commit 44276af

Please sign in to comment.