diff --git a/CHANGELOG.md b/CHANGELOG.md index 3929ec6..e370641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 3.3.3 (2017-12-03) + * [Bugfix] Create default network automatically. * [Bugfix] If `am logs` is passed a service which has multiple bind-mounts configured, Crane is now selecting the first accelerated one, not simply the first one (which might not be accelerated). diff --git a/README.md b/README.md index c184363..bf7705d 100644 --- a/README.md +++ b/README.md @@ -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.2 and requires Docker >= 1.13. +The latest release is 3.3.3 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.2/download.sh`" && \ +bash -c "`curl -sL https://raw.githubusercontent.com/michaelsauter/crane/v3.3.3/download.sh`" && \ mv crane /usr/local/bin/crane ``` diff --git a/crane/version_basic.go b/crane/version_basic.go index c1e1b35..dce94ae 100644 --- a/crane/version_basic.go +++ b/crane/version_basic.go @@ -6,7 +6,7 @@ import ( "fmt" ) -const Version = "3.3.2" +const Version = "3.3.3" const Pro = false func printVersion() { diff --git a/download.sh b/download.sh index b89d8f9..dee7541 100755 --- a/download.sh +++ b/download.sh @@ -2,7 +2,7 @@ # Set version to latest unless set by user if [ -z "$VERSION" ]; then - VERSION="3.3.2" + VERSION="3.3.3" fi echo "Downloading version ${VERSION}..."