diff --git a/CHANGELOG.md b/CHANGELOG.md index 95b4f26..7c26f4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Unreleased -* Added methods which return the SQL used by this gem: `assoc_exists_sql`, `assoc_not_exists_sql`, `compare_assoc_count_sql`, `only_assoc_count_sql` +# 1.1.0 - 2020-02-24 + +* Added methods which return the SQL used by this gem: `assoc_exists_sql`, `assoc_not_exists_sql`, `compare_assoc_count_sql`, `only_assoc_count_sql` [Documentation for them](https://maxlap.github.io/activerecord_where_assoc/ActiveRecordWhereAssoc/SqlReturningMethods.html) # 1.0.1 diff --git a/lib/active_record_where_assoc/version.rb b/lib/active_record_where_assoc/version.rb index 7c8a8ae..7fbaf47 100644 --- a/lib/active_record_where_assoc/version.rb +++ b/lib/active_record_where_assoc/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveRecordWhereAssoc - VERSION = "1.0.1".freeze + VERSION = "1.1.0".freeze end