From 9b9307c6dfdb50bca7bda38c95b1f2a5d7c27a3a Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Wed, 7 Aug 2024 10:31:06 -0400 Subject: [PATCH] Prepare release 1.18.0 (#415) * Prepare release 1.18.0 Update changelog and `Version` in preparation for a 1.18.0 release. * update date --- CHANGELOG.md | 10 ++++++++-- version.go | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fb93938..73db3382 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,14 @@ 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.18.0] - 2024-08-07 +### Added +- Child scope constructors are now visualized via `Visualize` +- `CallbackInfo` now includes constructor/decorator run time. + +Thanks to @greeflas for their contribution to this release. + +[1.18.0]: https://github.com/uber-go/dig/compare/v1.17.1...v1.18.0 ## [1.17.1] - 2023-10-19 ### Added diff --git a/version.go b/version.go index a55f22f7..bad2c05f 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package dig // Version of the library. -const Version = "1.18.0-dev" +const Version = "1.18.0"