diff --git a/CHANGELOG.md b/CHANGELOG.md index d4074f5ce..27330b2df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,26 @@ 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.19.3](https://github.com/uber-go/fx/compare/v1.19.2...v1.19.3) - 2023-04-17 +### Changed +- Fixed several typos in docs. +- WASM build support. +- Annotating In and Out structs with From/As annotations generated invalid results. + The annotation check now blocks this. +- `Shutdown`: Support calling from `Invoke`. + ### Deprecated - Deprecate `ShutdownTimeout` option. -## [1.19.1](https://github.com/uber-go/fx/compare/v1.18.0...v1.19.1) - 2023-01-10 +### Fixed +- Respect Shutdowner ExitCode from calling `Run`. + +## [1.19.2](https://github.com/uber-go/fx/compare/v1.19.1...v1.19.2) - 2023-02-21 + +### Changed +- Update Dig dependency to v1.16.1. + +## [1.19.1](https://github.com/uber-go/fx/compare/v1.19.0...v1.19.1) - 2023-01-10 ### Changed - Calling `fx.Stop()` after the `App` has already stopped no longer errors out. diff --git a/version.go b/version.go index daf9b52a9..cf9a00842 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.3"