From 1c9d4b8e2aac64d76cb384e3d2cc5d6df7f8d6f2 Mon Sep 17 00:00:00 2001 From: Ray Zane Date: Tue, 7 Feb 2017 00:28:30 -0500 Subject: [PATCH] Version 1.0.2 --- CHANGELOG.md | 7 +++++++ lib/baby_squeel/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cb38db..0afcaa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ *Nothing yet.* +## [1.0.2] - 2017-02-07 +### Added +- `BabySqueel::Association` now has `#==` and `#!=`. This is only supported for Rails 5+. Example: `Post.where { author: Author.last }`. + +### Fixed +- Incorrect alias detection caused by not tracking the full path to a join (#37). + ## [1.0.1] - 2016-11-07 ### Added - Add DSL#_ for wrapping expressions in Arel::Node::Grouping. Thanks to [@odedniv]. diff --git a/lib/baby_squeel/version.rb b/lib/baby_squeel/version.rb index cf599cb..14fa0bb 100644 --- a/lib/baby_squeel/version.rb +++ b/lib/baby_squeel/version.rb @@ -1,3 +1,3 @@ module BabySqueel - VERSION = '1.0.1'.freeze + VERSION = '1.0.2'.freeze end