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