Skip to content

Commit

Permalink
version 3.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BrachaY committed Feb 27, 2023
1 parent c5d3a3d commit 3233898
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
## 3.15.1 (Feb 6, 2023)
## 3.15.2 (Feb 26, 2023)

BUG FIXES:

* Fix a bug of '+' character in a user's email ([#292](https://github.com/imperva/terraform-provider-incapsula/pull/292))

## 3.15.1 (Feb 6, 2023)

BUG FIXES:

* Fix unchangeable attributes bug in account resource ([#284](https://github.com/imperva/terraform-provider-incapsula/pull/284))
* Fix bug in import command of siem_log_configuration and incapsula_siem_connection resources ([#285](https://github.com/imperva/terraform-provider-incapsula/pull/285))

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.15.1
VERSION=3.15.2

# Mac Intel Chip
OS_ARCH=darwin_amd64
Expand Down
2 changes: 1 addition & 1 deletion incapsula/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type Client struct {
func NewClient(config *Config) *Client {
client := &http.Client{}

return &Client{config: config, httpClient: client, providerVersion: "3.15.1"}
return &Client{config: config, httpClient: client, providerVersion: "3.15.2"}
}

func (c *Client) CreateFormDataBody(bodyMap map[string]interface{}) ([]byte, string) {
Expand Down

0 comments on commit 3233898

Please sign in to comment.