Skip to content

Commit

Permalink
Bump version to 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Aug 15, 2016
1 parent e2103c7 commit 72cec2d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 2.9.1 (2016-08-15)

* Fix tag override for images with no tag specified in the config.

_@michaelsauter_

## 2.9.0 (2016-05-16)

* Add `--dry-run` option to see what a certain command would do without actually
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@ continuous integration.


## Installation
The latest release (2.9.0) can be installed via:
The latest release (2.9.1) can be installed via:

```
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.9.0/download.sh`" && sudo mv crane /usr/local/bin/crane
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v2.9.1/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.9.0/CHANGELOG.md)
[changelog](https://github.com/michaelsauter/crane/blob/v2.9.1/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
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func runCli() {
}, true)

case versionCommand.FullCommand():
fmt.Println("v2.9.0")
fmt.Println("v2.9.1")

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

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

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

0 comments on commit 72cec2d

Please sign in to comment.