diff --git a/.changesets/fix-compatibility-for-ruby-3-3.md b/.changesets/fix-compatibility-for-ruby-3-3.md deleted file mode 100644 index 9eb687f2e..000000000 --- a/.changesets/fix-compatibility-for-ruby-3-3.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "fix" ---- - -Fix logger compatibility with Ruby 3.3 diff --git a/.changesets/fix-error-in-diagnose-report-path-read.md b/.changesets/fix-error-in-diagnose-report-path-read.md deleted file mode 100644 index b8b8fa2b1..000000000 --- a/.changesets/fix-error-in-diagnose-report-path-read.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "fix" ---- - -Fix an error in the diagnose report when reading a file's contents results in an "Invalid seek" error. This could happen when the log path is configured to `/dev/stdout`, which is not supported. diff --git a/CHANGELOG.md b/CHANGELOG.md index e9135b44a..ee0be26d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # AppSignal for Ruby gem Changelog +## 3.5.1 + +### Fixed + +- [2e93182b](https://github.com/appsignal/appsignal-ruby/commit/2e93182b6ae83b16fe9885558cd8f0bfce6a9a5f) patch - Fix an error in the diagnose report when reading a file's contents results in an "Invalid seek" error. This could happen when the log path is configured to `/dev/stdout`, which is not supported. +- [ae0b779b](https://github.com/appsignal/appsignal-ruby/commit/ae0b779b3ec00cc46291bc0373d748d720231e74) patch - Fix logger compatibility with Ruby 3.3 + ## 3.5.0 ### Added diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb index 6b1c9735e..a446b183a 100644 --- a/lib/appsignal/version.rb +++ b/lib/appsignal/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Appsignal - VERSION = "3.5.0" + VERSION = "3.5.1" end