diff --git a/CHANGELOG.md b/CHANGELOG.md index b1b4575..741df97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.12.0 + +- Drop support for EOL software (Ruby 2.x, Rails 6.0) +- Add `database_role` option to scope checks for replicas + ## 0.11.0 - Relax dependencies for compatibility with Rails 7.0 diff --git a/README.md b/README.md index eecc786..1a9e65d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # db-query-matchers [![Gem Version](https://badge.fury.io/rb/db-query-matchers.svg)](https://badge.fury.io/rb/db-query-matchers) -[![Build Status](https://github.com/civiccc/db-query-matchers/actions/workflows/ci.yml/badge.svg)](https://github.com/civiccc/db-query-matchers/actions) -[![Maintainability](https://api.codeclimate.com/v1/badges/776d6f7223e01be5f17a/maintainability)](https://codeclimate.com/github/brigade/db-query-matchers/maintainability) +[![Build Status](https://github.com/civiccc/db-query-matchers/actions/workflows/ci.yaml/badge.svg)](https://github.com/civiccc/db-query-matchers/actions) RSpec matchers for database queries made by ActiveRecord. diff --git a/lib/db_query_matchers/version.rb b/lib/db_query_matchers/version.rb index fe6eb2e..f1adb19 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.11.0' + VERSION = '0.12.0' end