diff --git a/CHANGELOG.md b/CHANGELOG.md index 304bb5e..d0ad101 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,16 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -## [1.4.0] - 2024-05-09 - -- Support retry after as a date. - -## [1.3.4] - 2024-05-09 +## [1.4.1] - 2024-05-09 ### Changed - Allow custom response handlers to return nil result values. +## [1.4.0] - 2024-05-09 + +- Support retry after as a date. + ## [1.3.3] - 2024-03-19 - Fix bug where overriding http.DefaultTransport with an implementation other than http.Transport would result in an interface conversion panic diff --git a/user_agent_handler.go b/user_agent_handler.go index 2ebc657..40d1a49 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.3.4", + ProductVersion: "1.4.1", } }