From f2d52d90696778a439439e997453295345876949 Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Tue, 27 Feb 2024 09:18:39 -0500 Subject: [PATCH] Prepare for 3.1.0 release --- Changelog.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Changelog.md b/Changelog.md index e829d8b..791898c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,23 @@ [Unreleased changes](https://github.com/bkeepers/dotenv/compare/v3.0.0...main) +## 3.1.0 + +**What's Changed** +* Fix regression with semantic-logger, allow setting custom logger by @bkeepers in https://github.com/bkeepers/dotenv/pull/494 + ```ruby + # config/application.rb + + # Set a custom dotenv logger + Dotenv::Rails.logger = MyCustomLogger.new + + module YourApp + class Application < Rails::Application + # … + end + end + ``` + ## 3.0.3 **What's Changed**