diff --git a/.version b/.version index 45a9970..f420d70 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v0.6.1 \ No newline at end of file +v0.6.2 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 642859e..6276ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.6.2 + +- **Packaging:** + - Use new dragonchain version 4.3.3 (chart version 1.0.7) + - Update default installed kubectl to v1.17.1 + - Update default installed virtualbox to v6.1.2 + - Use openfaas chart version 5.4.1 (openfaas 0.18.7, faas-netes 0.9.15) + ## v0.6.1 - **Features:** diff --git a/internal/configuration/variables.go b/internal/configuration/variables.go index 22da71a..1f2d88e 100644 --- a/internal/configuration/variables.go +++ b/internal/configuration/variables.go @@ -4,10 +4,10 @@ package configuration var Version string // DragonchainHelmVersion helm version of dragonchain to use -var DragonchainHelmVersion = "1.0.6" +var DragonchainHelmVersion = "1.0.7" // OpenfaasHelmVersion helm version of openfaas (faas-netes) to use -var OpenfaasHelmVersion = "5.4.0" +var OpenfaasHelmVersion = "5.4.1" // RegistryHelmVersion helm version of docker container registry to use var RegistryHelmVersion = "1.9.1" @@ -31,13 +31,13 @@ var MinikubeVMMemory = "4000mb" var MinikubeCpus = 2 // LinuxVirtualboxLink direct link for linux virtualbox installer download -var LinuxVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.0/VirtualBox-6.1.0-135406-Linux_amd64.run" +var LinuxVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.2/VirtualBox-6.1.2-135662-Linux_amd64.run" // MacosVirtualboxLink direct link for macos virtualbox installer download -var MacosVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.0/VirtualBox-6.1.0-135406-OSX.dmg" +var MacosVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.2/VirtualBox-6.1.2-135662-OSX.dmg" // WindowsVirtualboxLink direct link for windows virtualbox installer download -var WindowsVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.0/VirtualBox-6.1.0-135406-Win.exe" +var WindowsVirtualboxLink = "https://download.virtualbox.org/virtualbox/6.1.2/VirtualBox-6.1.2-135663-Win.exe" // LinuxMinikubeArm64Link direct link for minikube aarch64 executable var LinuxMinikubeArm64Link = "https://storage.googleapis.com/minikube/releases/v1.6.2/minikube-linux-arm64" @@ -64,16 +64,16 @@ var MacosHelmLink = "https://get.helm.sh/helm-v3.0.2-darwin-amd64.tar.gz" var WindowsHelmLink = "https://get.helm.sh/helm-v3.0.2-windows-amd64.zip" // LinuxKubectlLink direct link for linux kubectl executable -var LinuxKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/linux/amd64/kubectl" +var LinuxKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.1/bin/linux/amd64/kubectl" // LinuxKubectlArm64Link directl link for linux arm64 kubectl executable -var LinuxKubectlArm64Link = "https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/linux/arm64/kubectl" +var LinuxKubectlArm64Link = "https://storage.googleapis.com/kubernetes-release/release/v1.17.1/bin/linux/arm64/kubectl" // MacosKubectlLink direct link for macos kubectl executable -var MacosKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/darwin/amd64/kubectl" +var MacosKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.1/bin/darwin/amd64/kubectl" // WindowsKubectlLink direct link for windows kubectl executable -var WindowsKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/windows/amd64/kubectl.exe" +var WindowsKubectlLink = "https://storage.googleapis.com/kubernetes-release/release/v1.17.1/bin/windows/amd64/kubectl.exe" // SetDefaultCredentials indicates whether or not to set the default chain whe configuring the credentials ini file var SetDefaultCredentials = true diff --git a/scripts/get_installer.bash b/scripts/get_installer.bash index e184785..e5e0cd1 100755 --- a/scripts/get_installer.bash +++ b/scripts/get_installer.bash @@ -2,7 +2,7 @@ set -e # Default version (change with new tagged releases) -VERSION="v0.6.1" +VERSION="v0.6.2" if [ -z "$HOME" ]; then echo "The \$HOME environment variable must be present"