diff --git a/Changelog.md b/Changelog.md index 577060ff..e829d8b1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,20 @@ [Unreleased changes](https://github.com/bkeepers/dotenv/compare/v3.0.0...main) +## 3.0.3 + +**What's Changed** +* Solve circular require warning by @martijnbolhuis in https://github.com/bkeepers/dotenv/pull/491 +* Use tagged logger already configured on Rails by @kriansa in https://github.com/bkeepers/dotenv/pull/489 +* Fix exception on startup for Rails 7.1.0 by @bkeepers and @zspencer in https://github.com/bkeepers/dotenv/pull/492 + +**New Contributors** +* @zspencer made their first contribution in https://github.com/bkeepers/dotenv/pull/492 +* @martijnbolhuis made their first contribution in https://github.com/bkeepers/dotenv/pull/491 +* @kriansa made their first contribution in https://github.com/bkeepers/dotenv/pull/489 + +**Full Changelog**: https://github.com/bkeepers/dotenv/compare/v3.0.2...v3.0.3 + ## 3.0.2 * Fix: Restore ability to mutate Dotenv::Rails.files by @bkeepers in https://github.com/bkeepers/dotenv/pull/486 diff --git a/lib/dotenv/version.rb b/lib/dotenv/version.rb index fab5550c..a40d6ac9 100644 --- a/lib/dotenv/version.rb +++ b/lib/dotenv/version.rb @@ -1,3 +1,3 @@ module Dotenv - VERSION = "3.0.2".freeze + VERSION = "3.0.3".freeze end