Skip to content
This repository was archived by the owner on May 18, 2021. It is now read-only.

Commit 94e9aed

Browse files
committed
v0.9.0
1 parent 250dbfd commit 94e9aed

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
1-
## v0.9.0 (unreleased)
1+
## v0.9.0 (Feb 10 2015)
2+
3+
FEATURES:
24

35
* Add ability to provision the host system with `-L` or `--local`. This way, you
4-
can use chef-runner locally as a convenient wrapper around Chef. Note: This
5-
is going to replace `-M` (`--machine`) as the default target soon.
6-
* Partial matching of Test Kitchen instance names. For example, `chef-runner -K
7-
ubuntu` will provision the instance "default-ubuntu-1404" if that's the first
8-
instance with the string "ubuntu" in its name. Note: The matching does not
9-
support regular expressions. (Thanks to @StephenKing for the idea.)
10-
* Move most documentation from README to the [chef-runner wiki][wiki]. The
11-
README was too long, making it too hard to find relevant information. Now it
12-
only contains the most essential information.
6+
can use chef-runner as a convenient wrapper around Chef to manage your
7+
workstation or to create Docker images. Note: This is going to replace `-M`
8+
(`--machine`) as the default target soon.
9+
* Add `--sudo=false` option to not run commands using `sudo`. This currently
10+
affects Omnibus installer and Chef itself.
1311
* Add `--resolver` option to specify the cookbook dependency resolver to use.
1412
Available resolvers are: `berkshelf`, `librarian`, and `dir`. Without this
1513
option, the resolver is still selected based on the files in the current
1614
directory.
17-
* Add `--sudo=false` option to not run commands using `sudo`. This currently
18-
affects Omnibus installer and Chef itself.
19-
* Embed Omnibus installer instead of downloading it from the Internet. Now the
20-
script [is part][install.sh] of chef-runner's source code and we have total
21-
control of what it does.
15+
16+
IMPROVEMENTS:
17+
18+
* Move most documentation from README to the [chef-runner wiki][wiki]. The
19+
README was too long, making it too hard to find relevant information. Now it
20+
only contains the most essential information.
2221
* You can now install chef-runner as a Debian package on most Ubuntu and Debian
2322
distributions, and as an RPM package on Centos. See the [wiki
2423
page][wiki-installation] to learn more.
25-
* Add `Makefile`.
24+
* Partial matching of Test Kitchen instance names. For example, `chef-runner -K
25+
ubuntu` will provision the instance "default-ubuntu-1404" if that's the first
26+
instance with the string "ubuntu" in its name. Note: The matching does not
27+
support regular expressions. (Thanks to @StephenKing for the idea.)
28+
* Embed Omnibus installer instead of downloading it from the Internet. Now the
29+
`install.sh` script is part of chef-runner's source code and we have total
30+
control of what it does.
2631

2732
[wiki]: https://github.com/mlafeldt/chef-runner/wiki
2833
[wiki-installation]: https://github.com/mlafeldt/chef-runner/wiki/Installation
29-
[install.sh]: /chef/omnibus/assets/install.sh
3034

3135
## v0.8.0 (Nov 16 2014)
3236

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "runtime"
44

55
// The current version of chef-runner. A ".dev" suffix denotes that the version
66
// is currently being developed.
7-
const Version = "v0.9.0.dev"
7+
const Version = "v0.9.0"
88

99
// GitVersion is the Git version that is being compiled. This string contains
1010
// tag and commit information. It will be filled in by the compiler.

0 commit comments

Comments
 (0)