Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Oct 15, 2015
1 parent 0d17310 commit c2932c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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=<file>`

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Michael Sauter <[email protected]>
Brice Jaglin <[email protected]>
rich <[email protected]>
Dreamcat4 <[email protected]>
Michal Gebauer <[email protected]>
Michał Rączka <[email protected]>
Adrian Hurtado <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ 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
[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.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.
Expand Down
2 changes: 1 addition & 1 deletion crane/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
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.0.1"
VERSION="2.1.0"
fi

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

0 comments on commit c2932c9

Please sign in to comment.