Skip to content

Commit 5daabcd

Browse files
authored
Merge pull request #157 from workgena/drop_rails4_in_dev_mode
Drop Rails 4 support in development environment
2 parents 30f7ff4 + c7db5be commit 5daabcd

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
## [4.0.0] - 2018-07-19
6+
- Adde German translation | @morris-frank
7+
- Remove support for Ruby 2.1 and Rails 4
8+
9+
## [3.1.0] - 2018-04-10
10+
- Lower dependency of ActiveAdmin to >= 1.0.0.pre2
11+
- Add possibility to skip columns/values in CSV (batch_slice_columns method)
12+
13+
[Unreleased]: https://github.com/activeadmin-plugins/active_admin_import/compare/v4.0.0...HEAD
14+
[4.0.0]: https://github.com/activeadmin-plugins/active_admin_import/compare/v3.1.0...v4.0.0
15+
[3.1.0]: https://github.com/activeadmin-plugins/active_admin_import/compare/3.0.0...v3.1.0

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gemspec
66

77

88
group :test do
9-
default_rails_version = '4.2.8'
9+
default_rails_version = "~> 5.1"
1010
rails_version = ENV['RAILS'] || default_rails_version
1111
gem 'rails', rails_version
1212
gem 'rspec-rails'

lib/active_admin_import/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module ActiveAdminImport
3-
VERSION = "3.1.0"
3+
VERSION = "4.0.0"
44
end

0 commit comments

Comments
 (0)