From f07466839e140cd7a212bd87804472d02f720add Mon Sep 17 00:00:00 2001 From: steve Date: Mon, 18 Mar 2024 13:59:08 -0600 Subject: [PATCH] added changelog entry and bumped version in user agent handler to match --- CHANGELOG.md | 6 ++++++ user_agent_handler.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 016b32a..da2b6b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [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 + +### Changed + ## [1.3.2] - 2024-02-28 ### Changed diff --git a/user_agent_handler.go b/user_agent_handler.go index 552aca6..c984b8e 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.1", + ProductVersion: "1.3.3", } }