Skip to content

Commit f22ab10

Browse files
committed
add ruby 2.4.0 and drop rails 4.0. prep v6.4.0.
1 parent 0e48fa3 commit f22ab10

File tree

8 files changed

+10
-32
lines changed

8 files changed

+10
-32
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ cache: bundler
22
sudo: false
33
language: ruby
44
rvm:
5-
- 2.3.1
6-
- 2.2.5
5+
- 2.4.0
6+
- 2.3.3
7+
- 2.2.6
78
# these haven't been passing for a while:
89
# - jruby-head
910
# - rbx
1011

1112
gemfile:
12-
- gemfiles/activerecord_4.1.gemfile
1313
- gemfiles/activerecord_4.2.gemfile
1414
- gemfiles/activerecord_5.0_foreigner.gemfile
1515
- gemfiles/activerecord_5.0.gemfile

Appraisals

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
appraise 'activerecord-4.1' do
2-
gem 'activerecord', '~> 4.1.0'
3-
gem 'foreigner'
4-
platforms :ruby, :rbx do
5-
gem 'mysql2', '~> 0.3.20'
6-
end
7-
end
81

92
appraise 'activerecord-4.2' do
103
gem 'activerecord', '~> 4.2.0'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
### 6.4.0
4+
5+
* Merged [PR 236](https://github.com/mceachen/closure_tree/pull/236) which adds documentation for `has_closure_tree_root`.
6+
* Added ruby 2.4 and dropped Rails 4.1 from the build matrix.
7+
38
### 6.3.0
49

510
* `prepend_child` [handles invalid children properly now](https://github.com/mceachen/closure_tree/issues/249).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ closure_tree has some great features:
2727
* 2 SQL INSERTs on node creation
2828
* 3 SQL INSERT/UPDATEs on node reparenting
2929
* __Support for [concurrency](#concurrency)__ (using [with_advisory_lock](https://github.com/mceachen/with_advisory_lock))
30-
* __Support for ActiveRecord 4.1, 4.2 and 5.0__
30+
* __Support for ActiveRecord 4.2 and 5.0__
3131
* __Support for Ruby 2.2 and 2.3__
3232
* Support for reparenting children (and all their descendants)
3333
* Support for [single-table inheritance (STI)](#sti) within the hierarchy

gemfiles/activerecord_4.1.gemfile

Lines changed: 0 additions & 20 deletions
This file was deleted.

gemfiles/activerecord_4.2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "activerecord", "~> 4.2.0"
66

77
platforms :ruby, :rbx do
8-
gem "mysql2", "~> 0.3.20"
8+
gem "mysql2"
99
gem "pg"
1010
gem "sqlite3"
1111
end

mktree.rb

100755100644
File mode changed.

tests.sh

100755100644
File mode changed.

0 commit comments

Comments
 (0)