From 262036a49866d88d7adcd9f726cf8e93f43ce4c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Wed, 21 Nov 2018 18:38:56 +0100 Subject: [PATCH] chore(release): release v0.8.0-rc3 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ garden-service/package-lock.json | 2 +- garden-service/package.json | 2 +- support/install.ps1 | 4 ++-- 4 files changed, 33 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b297f162..e1f65bfe11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,33 @@ + +## [v0.8.0-rc3](https://github.com/garden-io/garden/compare/v0.8.0-rc2...v0.8.0-rc3) (2018-11-21) + +### Bug Fixes + +* docs, comments & various fixes ([2d081a0](https://github.com/garden-io/garden/commit/2d081a0)) +* use plugin-prefixed module names in dep calcs ([7f65c9a](https://github.com/garden-io/garden/commit/7f65c9a)) +* fix broken doc links ([4a96f4c](https://github.com/garden-io/garden/commit/4a96f4c)) +* allow env variables to be lower case ([b79609c](https://github.com/garden-io/garden/commit/b79609c)) +* fixes to hot reload source/target handling ([271917b](https://github.com/garden-io/garden/commit/271917b)) +* recursive bug copying .garden into .garden ([7855982](https://github.com/garden-io/garden/commit/7855982)) +* skip build task during hot-reloading ([5e24716](https://github.com/garden-io/garden/commit/5e24716)) +* set log state to success after deleting env ([19ef038](https://github.com/garden-io/garden/commit/19ef038)) +* **create-command:** add project key to generated config and fix tests ([63cca8f](https://github.com/garden-io/garden/commit/63cca8f)) + +### Code Refactoring + +* rename "workflow" to "task" ([4c7230a](https://github.com/garden-io/garden/commit/4c7230a)) +* rename Task to BaseTask ([9b40291](https://github.com/garden-io/garden/commit/9b40291)) +* **build:** remove dependancy on git submodule for k8s ([d284494](https://github.com/garden-io/garden/commit/d284494)) +* **error-messages:** improve error message for check-docs ([5c4fb3a](https://github.com/garden-io/garden/commit/5c4fb3a)) +* **go-cli:** use docker sdk and keep containers running ([85dfd13](https://github.com/garden-io/garden/commit/85dfd13)) +* **go-cli:** install bin deps where Garden expects them ([13fa57c](https://github.com/garden-io/garden/commit/13fa57c)) + +### Features + +* tasks/workflows implemented ([de9275b](https://github.com/garden-io/garden/commit/de9275b)) + + ## [v0.8.0-rc2](https://github.com/garden-io/garden/compare/v0.8.0-rc1...v0.8.0-rc2) (2018-11-01) diff --git a/garden-service/package-lock.json b/garden-service/package-lock.json index c276479f28..6e04e9be55 100644 --- a/garden-service/package-lock.json +++ b/garden-service/package-lock.json @@ -1,6 +1,6 @@ { "name": "garden-cli", - "version": "0.8.0-rc2", + "version": "0.8.0-rc3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/garden-service/package.json b/garden-service/package.json index 3a4a5d4b7a..ddf2b5d9b5 100644 --- a/garden-service/package.json +++ b/garden-service/package.json @@ -1,6 +1,6 @@ { "name": "garden-cli", - "version": "0.8.0-rc2", + "version": "0.8.0-rc3", "description": "A full-featured development framework for containers and serverless", "repository": { "type": "git", diff --git a/support/install.ps1 b/support/install.ps1 index 998149ca4f..90e7832824 100644 --- a/support/install.ps1 +++ b/support/install.ps1 @@ -123,8 +123,8 @@ md -Force $gardenTmpPath | Out-Null # Download and extract the archive to $gardenBinPath # TODO: change this to point to the latest stable instead of the hard-coded version -$url = "https://github.com/garden-io/garden/releases/download/v0.8.0-rc2/garden-0.8.0-rc2-a884d81-win-amd64.zip" -$zipPath = "$gardenTmpPath\garden-0.8.0-rc2-a884d81-win-amd64.zip" +$url = "https://github.com/garden-io/garden/releases/download/v0.8.0-rc3/garden-0.8.0-rc3-windows-amd64.zip" +$zipPath = "$gardenTmpPath\garden-0.8.0-rc3-windows-amd64.zip" Write-Host "-> Downloading $url..." if (-not ([Net.ServicePointManager]::SecurityProtocol).ToString().Contains([Net.SecurityProtocolType]::Tls12)) {