From d9d9838796e929c5c12640e1a514c63dcb292d43 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Wed, 11 Jan 2023 10:40:17 -0800 Subject: [PATCH] Prepare for release v1.19.1 (#1021) --- CHANGELOG.md | 9 +++++++-- version.go | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a6a73acc..208cb39e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,13 @@ 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.19.1](https://github.com/uber-go/fx/compare/v1.18.0...v1.19.1) - 2023-01-10 +### Changed +- Calling `fx.Stop()` after the `App` has already stopped no longer errors out. + +### Fixed +- Addressed a regression in 1.19.0 release which caused apps to ignore OS signals + after running for startTimeout duration. ## [1.19.0](https://github.com/uber-go/fx/compare/v1.18.2...v1.19.0) - 2023-01-03 ### Added diff --git a/version.go b/version.go index daf9b52a9..486815e62 100644 --- a/version.go +++ b/version.go @@ -21,4 +21,4 @@ package fx // Version is exported for runtime compatibility checks. -const Version = "1.20.0-dev" +const Version = "1.19.1"