diff --git a/CHANGELOG.md b/CHANGELOG.md index 165ff1f..6f4803a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.6] - 2024-12-13 + +### Changed + +- Fixed a bug where headers inspection handler would fail upon receiving an error. + ## [1.4.5] - 2024-09-03 ### Changed + - Fixed a bug in compression middleware which caused empty body to send on retries ## [1.4.4] - 2024-08-13 diff --git a/user_agent_handler.go b/user_agent_handler.go index 3f94bf2..51af61b 100644 --- a/user_agent_handler.go +++ b/user_agent_handler.go @@ -42,7 +42,7 @@ func NewUserAgentHandlerOptions() *UserAgentHandlerOptions { return &UserAgentHandlerOptions{ Enabled: true, ProductName: "kiota-go", - ProductVersion: "1.4.5", + ProductVersion: "1.4.6", } }