From b93b5089577992a7759038c627fcfd99c7d0dd82 Mon Sep 17 00:00:00 2001 From: Devang Gaur Date: Fri, 19 Feb 2021 02:02:13 +0530 Subject: [PATCH] bump versions to v1.3.3 --- README.md | 2 +- docs/getting-started/quickstart.md | 6 +++--- docs/getting-started/usage.md | 2 +- pkg/version/version.go | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c9ddf15b2..6a6c3bdb2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Terrascan's supports multiple ways to install, including [brew](https://github.c Here, we will download the terrascan binary directly from the [releases](https://github.com/accurics/terrascan/releases) page. Make sure to select the right binary for your machine. Here's an example of how to install it: ```sh -$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.2/terrascan_1.3.2_Darwin_x86_64.tar.gz --output terrascan.tar.gz +$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.3/terrascan_1.3.3_Darwin_x86_64.tar.gz --output terrascan.tar.gz $ tar -xvf terrascan.tar.gz x CHANGELOG.md x LICENSE diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md index 436311237..ca0d727ba 100644 --- a/docs/getting-started/quickstart.md +++ b/docs/getting-started/quickstart.md @@ -11,10 +11,10 @@ Terrascan is a portable executable that does not strictly require installation, Terrascan's [release page](https://github.com/accurics/terrascan/releases) includes builds for common platforms. Just download and extract the package for your platform. For example, if you use a Mac you might do this: ``` Bash -$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.2/terrascan_1.3.2_Darwin_x86_64.tar.gz --output terrascan.tar.gz +$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.3/terrascan_1.3.3_Darwin_x86_64.tar.gz --output terrascan.tar.gz $ tar xzf terrascan.tar.gz $ ./terrascan version -version: v1.3.2 +version: v1.3.3 ``` If you want to use this executable for the rest of this quickstart, it will help to create an alias or install the executable onto your path. For example with bash you could do something like this: @@ -34,7 +34,7 @@ Terrascan is also available as a Docker image in Docker Hub and can be used as f ``` Bash $ docker run --rm accurics/terrascan version -version: v1.3.2 +version: v1.3.3 ``` If you want to use the Docker image for the rest of this quickstart, it will help to create an alias, script or batch file that reduces the typing necessary. For example with bash you could do something like this: diff --git a/docs/getting-started/usage.md b/docs/getting-started/usage.md index 34ae64085..6d89dd4dd 100644 --- a/docs/getting-started/usage.md +++ b/docs/getting-started/usage.md @@ -5,7 +5,7 @@ Terrascan is a static code analyzer for Infrastructure as Code tooling. It can e Terrascan's binary can be found on the package for each [release](https://github.com/accurics/terrascan/releases). Here's an example of how to install it: ``` Bash -$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.2/terrascan_1.3.2_Darwin_x86_64.tar.gz --output terrascan.tar.gz +$ curl --location https://github.com/accurics/terrascan/releases/download/v1.3.3/terrascan_1.3.3_Darwin_x86_64.tar.gz --output terrascan.tar.gz $ tar -xvf terrascan.tar.gz x CHANGELOG.md x LICENSE diff --git a/pkg/version/version.go b/pkg/version/version.go index 0fd3b876d..44701802f 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -17,7 +17,7 @@ package version // Terrascan The Terrascan version -const Terrascan = "v1.3.2" +const Terrascan = "v1.3.3" // Get returns the terrascan version func Get() string {