From 6692441a51b9ffeb40a74e07f55c133653558bb3 Mon Sep 17 00:00:00 2001 From: Gleb Arkhipov Date: Fri, 8 Mar 2024 10:12:22 +0100 Subject: [PATCH 1/4] Prepare release v1.20.2 --- CHANGELOG.md | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d85328233..7eb593393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [1.20.2](https://github.com/uber-go/fx/compare/v1.20.1...v1.20.2) - 2024-03-08 ### Added - fxtest: Add WithTestLogger option that uses a `testing.TB` as the diff --git a/version.go b/version.go index 94d9f501b..85b43638f 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package fx // Version is exported for runtime compatibility checks. -const Version = "1.21.0-dev" +const Version = "1.20.2" From 60851568b6a4401bb34a4e46fadb968f11c4a372 Mon Sep 17 00:00:00 2001 From: Gleb Arkhipov Date: Mon, 11 Mar 2024 09:24:46 +0100 Subject: [PATCH 2/4] Add more items to the change log. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eb593393..aa437dbd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - fxtest: Add WithTestLogger option that uses a `testing.TB` as the Fx event logger. +- Upgrade Dig dependency to v1.17.1 +- Update and clarify a lot of the API documentation ## [1.20.1](https://github.com/uber-go/fx/compare/v1.20.0...v1.20.1) - 2023-10-17 From e0aedcddab8e4b7a2f4b47f74147b629af7131b1 Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Wed, 13 Mar 2024 10:48:19 -0400 Subject: [PATCH 3/4] update changelog & bump minor version --- CHANGELOG.md | 5 ++++- version.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa437dbd5..c412b165e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.20.2](https://github.com/uber-go/fx/compare/v1.20.1...v1.20.2) - 2024-03-08 +## [1.21.0](https://github.com/uber-go/fx/compare/v1.20.1...v1.21.0) - 2024-03-13 ### Added - fxtest: Add WithTestLogger option that uses a `testing.TB` as the Fx event logger. +- An fxevent logger that can log events using a slog logger has been added. + +### Changed - Upgrade Dig dependency to v1.17.1 - Update and clarify a lot of the API documentation diff --git a/version.go b/version.go index 85b43638f..1b9be40d6 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package fx // Version is exported for runtime compatibility checks. -const Version = "1.20.2" +const Version = "1.21.0" From 2537647680b66bbf6d968cbb9386e8036cacf5e1 Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Wed, 13 Mar 2024 10:53:30 -0400 Subject: [PATCH 4/4] remove docs update entry from changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c412b165e..96b030d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Upgrade Dig dependency to v1.17.1 -- Update and clarify a lot of the API documentation ## [1.20.1](https://github.com/uber-go/fx/compare/v1.20.0...v1.20.1) - 2023-10-17