From 856d46e33b83776f95916767a81648339d3f1663 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Tue, 3 Sep 2024 19:57:40 +0530 Subject: [PATCH] Update changelog and bump version --- CHANGELOG.md | 5 ++++- user_agent_handler.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ef7e9..165ff1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Added +## [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 a310851..3f94bf2 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.4", + ProductVersion: "1.4.5", } }