From 45af511c27eebb3b9e02abe4a35e1f978ad61bdc Mon Sep 17 00:00:00 2001 From: Jacob Oaks Date: Tue, 25 Jun 2024 16:10:21 -0400 Subject: [PATCH] Prepare Release v1.22.1 (#1217) Update changelog and `version.go` for a patch release that includes #1215. --- CHANGELOG.md | 7 +++++-- version.go | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e15773d18..08642a59a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,11 @@ 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 -- No changes yet. +## [1.22.1](https://github.com/uber-go/fx/compare/v1.22.0...v1.22.1) - 2024-06-25 + +### Fixed +- Fx apps will only listen to signals when `.Run()`, `.Wait()`, or `.Done()` + are called, fixing a regression introduced in v1.19.0. ## [1.22.0](https://github.com/uber-go/fx/compare/v1.21.1...v1.22.0) - 2024-05-30 diff --git a/version.go b/version.go index 8bb2b5b12..9ca711601 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package fx // Version is exported for runtime compatibility checks. -const Version = "1.23.0-dev" +const Version = "1.22.1"