diff --git a/CHANGELOG.md b/CHANGELOG.md index d3cd0cb..15af54c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -## 1.21.0 (Dec 5, 2023) +## 1.21.1 (Dec 5, 2023) + +BUG FIXES: + +* Fix incorrect template package for `ExecuteTemplate` function + +PR [48](https://github.com/jfrog/terraform-provider-shared/pull/48) + +## 1.21.0 (Dec 4, 2023) IMPROVEMENTS: diff --git a/util/util.go b/util/util.go index 50a53fb..a152ee6 100644 --- a/util/util.go +++ b/util/util.go @@ -4,8 +4,8 @@ import ( "bytes" "context" "fmt" - "html/template" "os" + "text/template" "github.com/go-resty/resty/v2" "github.com/hashicorp/go-version"