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