From 7578f1ab88b382103d5b7e80bc0e4377597530f9 Mon Sep 17 00:00:00 2001 From: Yangjing Zhang Date: Thu, 9 May 2024 23:02:30 +0800 Subject: [PATCH] Added changelog entry and bumped version to 1.3.4 --- CHANGELOG.md | 6 ++++++ user_agent_handler.go | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da2b6b6..e86a462 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.4] - 2024-05-09 + +### Changed + +- Allow custom response handlers to return nil result values. + ## [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 c984b8e..2ebc657 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.3", + ProductVersion: "1.3.4", } }