From 299453813ca763e36812ec90e77e8911ec48a6f8 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 3 Jan 2023 23:05:07 -0800 Subject: [PATCH] Release v1.16.0 (#368) Refs GO-1790. --- CHANGELOG.md | 11 +++++++++-- version.go | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28fbc3b1..fb2dca2a 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.16.0] - 2023-01-03 +### Added +- Add `RecoverFromPanics` option, which provides panic-recovery mechanism for Container. +- Add `Error` interface which enables distinguishing errors from Dig using standard `errors` + package. + +Thanks to @mie998 for their contribution(s) to this release. + +[1.l6.0]: https://github.com/uber-go/dig/compare/v1.15.0...v1.16.0 ## [1.15.0] - 2022-08-02 ### Added diff --git a/version.go b/version.go index dba8b0c9..3f7a6eb9 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package dig // Version of the library. -const Version = "1.16.0-dev" +const Version = "1.16.0"