diff --git a/CHANGELOG.md b/CHANGELOG.md index 7171200c..86b0d0ed 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.25.5 (Jul 15, 2024) + +IMPROVEMENTS: +- fix site ssl settings documentation ([#454](https://github.com/imperva/terraform-provider-incapsula/pull/454)) + + ## 3.25.4 (Jul 03, 2024) IMPROVEMENTS: diff --git a/GNUmakefile b/GNUmakefile index d944187d..c47ae5ad 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,7 +6,7 @@ NAMESPACE=terraform-providers PKG_NAME=incapsula BINARY=terraform-provider-${PKG_NAME} # Whenever bumping provider version, please update the version in incapsula/client.go (line 27) as well. -VERSION=3.25.4 +VERSION=3.25.5 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 63346aba..d34481cd 100644 --- a/incapsula/client.go +++ b/incapsula/client.go @@ -34,7 +34,7 @@ type Client struct { func NewClient(config *Config) *Client { client := &http.Client{} - return &Client{config: config, httpClient: client, providerVersion: "3.25.4"} + return &Client{config: config, httpClient: client, providerVersion: "3.25.5"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {