From 5886e05ac1ada482b406984b7b31d121a442cd0a Mon Sep 17 00:00:00 2001 From: BrachaY Date: Mon, 29 May 2023 09:04:16 +0300 Subject: [PATCH] bump version: 3.18.0 --- CHANGELOG.md | 6 ++++++ GNUmakefile | 2 +- incapsula/client.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77b805d1..e3c67a60 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.18.0 (May 29, 2023) + +FEATURES: + +* **New Resource:** `incapsula_site_ssl_settings` + ## 3.17.0 (May 17, 2023) IMPROVEMENTS: diff --git a/GNUmakefile b/GNUmakefile index 191a4a60..ba51409e 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.17.0 +VERSION=3.18.0 # Mac Intel Chip OS_ARCH=darwin_amd64 diff --git a/incapsula/client.go b/incapsula/client.go index 5651f11e..59542016 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.17.0"} + return &Client{config: config, httpClient: client, providerVersion: "3.18.0"} } func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {