diff --git a/CHANGELOG.md b/CHANGELOG.md index defd6b5..5615cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## master +## 0.10.0 + +- Relax dependencies for compatibility with Rails 6.0 +- Add `unscoped` option for counting queries with no `WHERE` / `LIMIT` + ## 0.9.0 - Add `rspec` and `activesupport` as proper runtime dependencies diff --git a/lib/db_query_matchers/version.rb b/lib/db_query_matchers/version.rb index 8d63d4a..4239b25 100644 --- a/lib/db_query_matchers/version.rb +++ b/lib/db_query_matchers/version.rb @@ -1,4 +1,4 @@ # Defines the gem version. module DBQueryMatchers - VERSION = '0.9.0' + VERSION = '0.10.0' end