From 591e7bac37c69d8d5332a456c76bd0fc301c7073 Mon Sep 17 00:00:00 2001 From: Michael Sauter Date: Thu, 6 Mar 2014 09:18:18 +1100 Subject: [PATCH] Bump version to 0.5.1 --- README.md | 2 +- main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b845cdd..c99cb58 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Lift containers with ease Crane is a little tool to orchestrate Docker containers. It works by reading in a `Cranefile` (a JSON file) which describes how to obtain container images and how to run them. This simplifies setting up a development environemt a lot as you don't have to bring up every container manually, remembering all the arguments you need to pass. By storing the `Cranefile` next to the data and the app(s) in a repository, you can easily share the whole development environment. ## Installation -Dowload [the latest release](https://github.com/michaelsauter/crane/releases/download/v0.5.0/crane) of `crane` and put it in your path, e.g. in `/usr/local/bin`. +Dowload [the latest release](https://github.com/michaelsauter/crane/releases/download/v0.5.1/crane) of `crane` and put it in your path, e.g. in `/usr/local/bin`. Of course, you will need to have Docker (> 0.8) installed on your system. If you are on OS X, I recommend using [docker-osx](https://github.com/noplay/docker-osx).[boot2docker](https://github.com/boot2docker/boot2docker) is nice, but unfortunately, it does not support bind-mounting volumes yet. diff --git a/main.go b/main.go index 46a0c48..b32509a 100644 --- a/main.go +++ b/main.go @@ -121,7 +121,7 @@ If no Dockerfile is given, it will pull the image from the index. Short: "Display version", Long: `Displays the version of Crane.`, Run: func(cmd *cobra.Command, args []string) { - fmt.Println("v0.5.0") + fmt.Println("v0.5.1") }, }