From 7828407c12d52e3fe70bf2683e7e732e1a2702d1 Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Sun, 16 Nov 2014 09:17:00 +0100 Subject: [PATCH] v0.8.0 --- CHANGELOG.md | 8 +++++++- version.go | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd1a1d6..32e36ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ -## v0.8.0 (unreleased) +## v0.8.0 (Nov 16 2014) FEATURES: +* Support using chef-runner on **Windows**. New releases will include + cross-compiled Windows binaries. Requires `ssh.exe` and `rsync.exe` to be + installed. `ssh.exe` is included in MinGW ([Git Bash]). `rsync.exe` must be + configured to use destination-default permissions when copying files: + `chef-runner --rsync --no-p --rsync --no-g --rsync --chmod=ugo=rwX`. * Allow to specify one or more custom OpenSSH options on the command line, e.g. `chef-runner --ssh LogLevel=debug --ssh "ProxyCommand ..."`. See `ssh_config(5)` for a list of available options and their format. (Thanks to @@ -32,6 +37,7 @@ BREAKING CHANGES: * No longer run Rsync in verbose mode by default. To get back the old output, you need to use `--rsync --verbose` now. +[Git Bash]: http://msysgit.github.io/ [omnibus package]: https://godoc.org/github.com/mlafeldt/chef-runner/chef/omnibus ## v0.7.0 (Sep 12 2014) diff --git a/version.go b/version.go index de88c1a..d5f8bef 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ import "runtime" // The current version of chef-runner. A ".dev" suffix denotes that the version // is currently being developed. -const Version = "v0.8.0.dev" +const Version = "v0.8.0" // GitVersion is the Git version that is being compiled. This string contains // tag and commit information. It will be filled in by the compiler.