Skip to content

Release 7.2.0 #365

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
cache: bundler
sudo: false
language: ruby

rvm:
- 2.7.1
- 2.6.3
- 2.5.5

Expand Down Expand Up @@ -31,3 +32,5 @@ matrix:
exclude:
- rvm: 2.5.5
gemfile: gemfiles/activerecord_edge.gemfile
- rvm: 2.7.1
gemfile: gemfiles/activerecord_4.2.gemfile
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 7.2.0
- Ruby 2.7 support
- Ordering raw SQL argument wrapped with Arel.sql

### 7.1.0
Closure Tree is now tested against Rails 6.0
- Directly require core_ext for String#strip_heredoc[PR 350](https://github.com/ClosureTree/closure_tree/pull/350)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ end

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

* Ruby 2.5, 2.6
* Ruby 2.5, 2.6 and 2.7
* ActiveRecord 4.2, 5.x and 6.0
* PostgreSQL, MySQL, and SQLite. Concurrency tests are only run with MySQL and PostgreSQL.

Expand Down
2 changes: 1 addition & 1 deletion lib/closure_tree/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ClosureTree
VERSION = Gem::Version.new('7.1.0')
VERSION = Gem::Version.new('7.2.0')
end