diff --git a/CHANGELOG.md b/CHANGELOG.md index 676b6b0..85c404d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Not released +## 0.18.0 + - Fix eager loading of scoped associations. (https://github.com/Beyond-Finance/active_force/pull/67) - Adding `.blank?`, `.present?`, and `.any?` delegators to `ActiveQuery`. (https://github.com/Beyond-Finance/active_force/pull/68) - Adding `update` and `update!` class methods on `SObject`. (https://github.com/Beyond-Finance/active_force/pull/66) diff --git a/lib/active_force/version.rb b/lib/active_force/version.rb index 0420d74..d1f5be8 100644 --- a/lib/active_force/version.rb +++ b/lib/active_force/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveForce - VERSION = '0.17.0' + VERSION = '0.18.0' end