Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Crowder <adam@adamcrowder.net>
  • Loading branch information
cheeseandcereal committed Jan 17, 2020
1 parent 4c7e44a commit 16c5af5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.6.1
v0.6.2
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
18 changes: 9 additions & 9 deletions internal/configuration/variables.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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
2 changes: 1 addition & 1 deletion scripts/get_installer.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 16c5af5

Please sign in to comment.