From d14f6caf0bff97f8b01c01d2ec18f172b179602b Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 22 Mar 2022 10:15:55 -0700 Subject: [PATCH] Prepare for release v1.14.1 (#335) --- CHANGELOG.md | 11 +++++++++-- version.go | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6311b97..602b4a67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## Unreleased -- No changes yet. +## [1.14.1] - 2022-03-22 +### Fixed +- Fix an issue where a dependency for a decoration supplied by another decorator in the + same scope is ignored. +- Fix a panic when submitting a single value as a value group in `Scope.Decorate`. +- Upon a provide error, make the error message contain the function named specified + by LocationForPC Option. + +[1.14.1]: https://github.com/uber-go/dig/compare/v1.14.0...v1.14.1 ## [1.14.0] - 2022-02-23 ### Added diff --git a/version.go b/version.go index 7ecfecd2..d74f8c9e 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package dig // Version of the library. -const Version = "1.15.0-dev" +const Version = "1.14.1"