From 962641232d379472af77908dfed3f2f0a5c234dc Mon Sep 17 00:00:00 2001 From: Brandon Keepers Date: Thu, 12 Dec 2024 17:37:42 -0500 Subject: [PATCH] Prepare for 3.1.5 release --- Changelog.md | 14 +++++++++++++- lib/dotenv/version.rb | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index c49f2d4..41e0874 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,18 @@ # Changelog -[Unreleased changes](https://github.com/bkeepers/dotenv/compare/v3.1.3...main) +[Unreleased changes](https://github.com/bkeepers/dotenv/compare/v3.1.5...main) + +## 3.1.5 + +* Optimize parser by removing repeated hash merges by @andrewts129 in https://github.com/bkeepers/dotenv/pull/515 +* Refactor parser to avoid duplicate scan/gsub by @bkeepers in https://github.com/bkeepers/dotenv/pull/517 +* Fix typo in README by @JohnYangSam in https://github.com/bkeepers/dotenv/pull/516 + +### New Contributors +* @JohnYangSam made their first contribution in https://github.com/bkeepers/dotenv/pull/516 +* @andrewts129 made their first contribution in https://github.com/bkeepers/dotenv/pull/515 + +**Full Changelog**: https://github.com/bkeepers/dotenv/compare/v3.1.4...v3.1.5 ## 3.1.4 diff --git a/lib/dotenv/version.rb b/lib/dotenv/version.rb index 48e1ebd..ee4d280 100644 --- a/lib/dotenv/version.rb +++ b/lib/dotenv/version.rb @@ -1,3 +1,3 @@ module Dotenv - VERSION = "3.1.4".freeze + VERSION = "3.1.5".freeze end