From bb4061cd1b9707baa312d5c87ce33b0f431fb64a Mon Sep 17 00:00:00 2001 From: Mike Goldsmith Date: Wed, 11 Dec 2024 15:18:49 +0000 Subject: [PATCH] rel: Prepare the v0.34.0 release (#289) ## Which problem is this PR solving? Prepares the v0.34.0 release. ## Short description of the changes - Update version to 0.34.0 - Add change log entry --- CHANGELOG.md | 5 +++++ version.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ce07ba..21cdd2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Husky Changelog +## 0.34.0 2024-12-11 + +- fix: Disable HTML escaping when JSON encoding values (#288) | @MikeGoldsmith +- maint(deps): bump the minor-patch group with 3 updates (#287) | @dependabot + ## 0.33.0 2024-11-14 - fix: revert back to recognize only "sampleRate" or "SampleRate" attributes (#284) | [Robb Kidd](https://github.com/robbkidd) diff --git a/version.go b/version.go index 45ca318..1a2f3cc 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package husky var ( - Version string = "0.33.0" + Version string = "0.34.0" )