From 7d923d0464cca2ece189d3583e660072846607ac Mon Sep 17 00:00:00 2001 From: Jack Rothrock Date: Wed, 18 Jun 2025 12:30:28 -0600 Subject: [PATCH] Bump version to 2.1.0 --- CHANGELOG.md | 12 ++++++++++++ lib/scout_apm/logging/version.rb | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 006a979..2876bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 2.1.0 +* Add ability to capture log line with logs. + * `logs_capture_log_line: true` +* Add ability to capture stack trace with logs. + * `logs_capture_call_stack: true` + * See [#98](https://github.com/scoutapp/scout_apm_ruby_logging/pull/98) for benchmarks. +* Add ability to disable warn message on method_missing. + * `logs_method_missing_warning: false` +* Add ability to log stack trace on method_missing. + * `logs_method_missing_call_stack: true` +* Add tests for ActionCable. + ## 2.0.0 * Remove vendored opentelmetry SDK. * Add support for Ruby 3.4. diff --git a/lib/scout_apm/logging/version.rb b/lib/scout_apm/logging/version.rb index 0ec026f..741a0d0 100644 --- a/lib/scout_apm/logging/version.rb +++ b/lib/scout_apm/logging/version.rb @@ -2,6 +2,6 @@ module ScoutApm module Logging - VERSION = '2.0.0' + VERSION = '2.1.0' end end