From 7866431cd71512c4813e4f6ec7d4d84466b53059 Mon Sep 17 00:00:00 2001 From: "bracha.yalon" Date: Wed, 10 Jan 2024 17:09:08 +0200 Subject: [PATCH] bump version: 3.21.2 --- CHANGELOG.md | 5 +++++ GNUmakefile | 2 +- incapsula/client.go | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd971ba0..38c5567e 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 3.21.2 (Jan 10, 2024) + +- Documentation fixes + + ## 3.21.1 (Jan 8, 2024) - Documentation fixes diff --git a/GNUmakefile b/GNUmakefile index a0f9aeb4..811d2b22 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.21.1 +VERSION=3.21.2 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 5559e8a2..b15ff4f0 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.21.1"} + return &Client{config: config, httpClient: client, providerVersion: "3.21.2"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {