Skip to content

Commit 55dcb5b

Browse files
committedJul 17, 2016
* version bump
* update README * update licence
1 parent fdd18d0 commit 55dcb5b

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed
 

‎Appraisals

+2-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@ appraise 'activerecord-4.2' do
1414
end
1515
end
1616

17-
appraise 'activerecord-5.0.rc1' do
18-
gem 'activerecord', '~> 5.0.0.rc1'
19-
gem 'actionpack', '~> 5.0.0.rc1'
20-
gem 'railties', '~> 5.0.0.rc1'
21-
gem 'rspec-rails', '>= 3.5.0.beta4'
17+
appraise 'activerecord-5.0' do
18+
gem 'activerecord', '~> 5.0.0'
2219
end
2320

2421
appraise 'activerecord-edge' do

‎MIT-LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2015 Matthew McEachen
1+
Copyright (c) 2012-2016 Matthew McEachen
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

‎README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ closure_tree has some great features:
2626
* 2 SQL INSERTs on node creation
2727
* 3 SQL INSERT/UPDATEs on node reparenting
2828
* __Support for [concurrency](#concurrency)__ (using [with_advisory_lock](https://github.com/mceachen/with_advisory_lock))
29-
* __Support for ActiveRecord 4.1, 4.2 and 5.0.alpha__
30-
* __Support for Ruby 2.0, 2.1, 2.2 and JRuby 9000__
29+
* __Support for ActiveRecord 4.1, 4.2 and 5.0__
30+
* __Support for Ruby 2.0, 2.1, 2.2, 2.3.1 and JRuby 9000__
3131
* Support for reparenting children (and all their descendants)
3232
* Support for [single-table inheritance (STI)](#sti) within the hierarchy
3333
* ```find_or_create_by_path``` for [building out heterogeneous hierarchies quickly and conveniently](#find_or_create_by_path)
@@ -547,10 +547,11 @@ end
547547

548548
Closure tree is [tested under every valid combination](http://travis-ci.org/#!/mceachen/closure_tree) of
549549

550-
* Ruby 2.0 (and sometimes head)
551-
* Ruby 2.2 (and sometimes head)
550+
* Ruby 2.0
551+
* Ruby 2.2
552+
* Ruby 2.3.1 (and sometimes head)
552553
* jRuby 9000 (and sometimes head)
553-
* The latest ActiveRecord 4.1, 4.2, and master branch
554+
* The latest ActiveRecord 4.1, 4.2, 5.0 and master branch
554555
* Concurrency tests for MySQL and PostgreSQL. SQLite is tested in a single-threaded environment.
555556

556557
Assuming you're using [rbenv](https://github.com/sstephenson/rbenv), you can use ```tests.sh``` to

‎lib/closure_tree/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ClosureTree
2-
VERSION = Gem::Version.new('6.0.0')
2+
VERSION = Gem::Version.new('6.0.1')
33
end

0 commit comments

Comments
 (0)
Please sign in to comment.