diff --git a/CHANGELOG.md b/CHANGELOG.md index c42c762..fb9bbc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [1.3.1] - 2024-02-09 + +### Added + +### Changed + +- Fix bug that resulted in the error "content is empty" being returned instead of HTTP status information if the request returned no content and an unsuccessful status code. + ## [1.3.0] - 2024-01-22 ### Added diff --git a/user_agent_handler.go b/user_agent_handler.go index def0aed..552aca6 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.1.0", + ProductVersion: "1.3.1", } }