From 7f64135fe1e2599138691f4c43a7fa773244b812 Mon Sep 17 00:00:00 2001 From: Andrey Novikov Date: Wed, 13 Dec 2023 10:05:25 +0900 Subject: [PATCH] 0.1.1: Fix Rails 7.1 deprecation warning --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 2 +- lib/yabeda/active_record/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a554b7..fc6367c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ ## Unreleased +## 0.1.1 - 2023-12-13 + +### Fixed + +- Fix deprecation warning in Rails 7.1. [#4](https://github.com/yabeda-rb/yabeda-activerecord/pull/4) by [@intrip][] + ## 0.1.0 - 2022-05-27 - Initial release: query performance metrics and connection pool stats. [@Envek][] [@Envek]: https://github.com/Envek/ "Andrey Novikov" +[@intrip]: https://github.com/intrip "Jacopo Beschi" diff --git a/Gemfile.lock b/Gemfile.lock index fe85314..40ebbf3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - yabeda-activerecord (0.1.0) + yabeda-activerecord (0.1.1) activerecord (>= 6.0) yabeda (~> 0.6) diff --git a/lib/yabeda/active_record/version.rb b/lib/yabeda/active_record/version.rb index 24676ef..8a54c71 100644 --- a/lib/yabeda/active_record/version.rb +++ b/lib/yabeda/active_record/version.rb @@ -2,6 +2,6 @@ module Yabeda module ActiveRecord - VERSION = "0.1.0" + VERSION = "0.1.1" end end