Skip to content

Commit

Permalink
Bump version to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsauter committed Nov 21, 2017
1 parent 940ea9d commit 3a23997
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 3.3.2 (2017-11-21)

* Remove broken flag `crane start --attach`. This flag was introduced in 3.3.0 but did not work properly, and doesn't add much value anyway. It would make more sense to have this flag on `crane run`, but that is left for another version.

* Apply `--interactive` to `docker start` only if `--attach` is already passed to it.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -27,13 +27,13 @@ Please see [www.craneup.tech](https://www.craneup.tech?utm_source=github&utm_med

## Installation

The latest release is 3.3.1 and requires Docker >= 1.13.
The latest release is 3.3.2 and requires Docker >= 1.13.
Please have a look at the [changelog](https://github.com/michaelsauter/crane/blob/master/CHANGELOG.md) when upgrading.

The free version can be installed via:

```
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v3.3.1/download.sh`" && \
bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v3.3.2/download.sh`" && \
mv crane /usr/local/bin/crane
```

Expand Down
2 changes: 1 addition & 1 deletion crane/version_basic.go
Expand Up @@ -6,7 +6,7 @@ import (
"fmt"
)

const Version = "3.3.1"
const Version = "3.3.2"
const Pro = false

func printVersion() {
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="3.3.1"
VERSION="3.3.2"
fi

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

0 comments on commit 3a23997

Please sign in to comment.