Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Release v0.3.1 #18

Merged
merged 2 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package webhook
import corev1 "k8s.io/api/core/v1"

// Version is automatically bumped on release branches
const version = "0.3.0"
const version = "0.3.1"

var appInfo = []corev1.EnvVar{
{
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ You can deploy the webhook to AWS Lambda and activate it in your Kubernetes clus

```terraform
module "secrethub_mutating_webhook" {
source = "github.com/secrethub/secrethub-kubernetes-mutating-webhook//deploy/aws-lambda?ref=v0.3.0"
source = "github.com/secrethub/secrethub-kubernetes-mutating-webhook//deploy/aws-lambda?ref=v0.3.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion deploy/aws-lambda/version.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ variable "webhook_version" {
# Default version will get bumped automatically on release PRs,
# so updating the module will also update the webhook version
# if the module doesn't override the variable.
default = "0.3.0"
default = "0.3.1"
}