diff --git a/CHANGELOG.md b/CHANGELOG.md index 33e921b..04bb83e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 2.1.0 (2015-10-15) * Add new `file` key to the `build` map. Equivalent of `docker build --file=` diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 880ba4c..90950d9 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,6 +1,7 @@ Michael Sauter Brice Jaglin rich +Dreamcat4 Michal Gebauer Michał Rączka Adrian Hurtado diff --git a/README.md b/README.md index b339334..6b1fe7f 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ continuous integration. ## Installation -The latest release (2.0.1) can be installed via: +The latest release (2.1.0) can be installed via: ``` -bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.0.1/download.sh`" && sudo mv crane /usr/local/bin/crane +bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.1.0/download.sh`" && sudo mv crane /usr/local/bin/crane ``` Older releases can be found on the @@ -21,7 +21,7 @@ Older releases can be found on the build Crane yourself by using the standard Go toolchain. Please have a look at the -[changelog](https://github.com/michaelsauter/crane/blob/v2.0.1/CHANGELOG.md) +[changelog](https://github.com/michaelsauter/crane/blob/v2.1.0/CHANGELOG.md) when upgrading. Of course, you will need to have Docker (>= 1.6) installed. diff --git a/crane/cmd.go b/crane/cmd.go index aeaf279..4615083 100644 --- a/crane/cmd.go +++ b/crane/cmd.go @@ -220,7 +220,7 @@ func handleCmd() { }, true) case versionCommand.FullCommand(): - fmt.Println("v2.0.1") + fmt.Println("v2.1.0") case graphCommand.FullCommand(): commandAction(*graphTargetArg, func(uow *UnitOfWork) { diff --git a/download.sh b/download.sh index 0917d59..2f92a5a 100755 --- a/download.sh +++ b/download.sh @@ -2,7 +2,7 @@ # Set version to latest unless set by user if [ -z "$VERSION" ]; then - VERSION="2.0.1" + VERSION="2.1.0" fi echo "Downloading version ${VERSION}..."