Skip to content

Commit

Permalink
Bump version to 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Nov 14, 2016
1 parent 71f3786 commit ba69970
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 2.11.0 (2016-11-14)

* Allow to override configuration by another configuration file. By default,
Crane is looking for e.g. `crane.override.yml` if the config file in use is
`crane.yml`. This can be customized via `--override`/`CRANE_OVERRIDE`.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -30,18 +30,18 @@ continuous integration.


## Installation
The latest release (2.10.3) can be installed via:
The latest release (2.11.0) can be installed via:

```
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.10.3/download.sh`" && sudo mv crane /usr/local/bin/crane
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.11.0/download.sh`" && sudo mv crane /usr/local/bin/crane
```

Older releases can be found on the
[releases](https://github.com/michaelsauter/crane/releases) page. You can also
build Crane yourself by using the standard Go toolchain.

Please have a look at the
[changelog](https://github.com/michaelsauter/crane/blob/v2.10.3/CHANGELOG.md)
[changelog](https://github.com/michaelsauter/crane/blob/v2.11.0/CHANGELOG.md)
when upgrading.

Of course, you will need to have Docker (>= 1.6) installed.
Expand Down
2 changes: 1 addition & 1 deletion crane/cli.go
Expand Up @@ -305,7 +305,7 @@ func runCli() {
}, true)

case versionCommand.FullCommand():
fmt.Println("v2.10.3")
fmt.Println("v2.11.0")

case statsCommand.FullCommand():
commandAction(*statsTargetArg, func(uow *UnitOfWork) {
Expand Down
2 changes: 1 addition & 1 deletion download.sh
Expand Up @@ -2,7 +2,7 @@

# Set version to latest unless set by user
if [ -z "$VERSION" ]; then
VERSION="2.10.3"
VERSION="2.11.0"
fi

echo "Downloading version ${VERSION}..."
Expand Down

0 comments on commit ba69970

Please sign in to comment.