diff --git a/HISTORY.md b/HISTORY.md index bacb60464..733127eca 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,15 @@ # History +## 0.3.2 + +- #675: @michaelhobbs port wait-to-retire from broadly/dokku +- #765: @josegonzalez Ignore tls directory when listing apps +- #766: @josegonzalez Sort output of apps command +- #771: @josegonzalez Doc updates +- #518 #772: @nickl- Import ssl certificates +- #773: @alex-sherwin Support a way to not create nginx vhost +- #774: @josegonzalez Add the ability to customize an app's hostname using nginx-hostname pluginhook + ## 0.3.1 - 647b2157: @josegonzalez Update HISTORY.md for 0.3.0 diff --git a/README.md b/README.md index ce422d53d..3a2134e98 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. S To install the latest stable version of dokku, you can run the following bootstrapper command: - $ wget -qO- https://raw.github.com/progrium/dokku/v0.3.1/bootstrap.sh | sudo DOKKU_TAG=v0.3.1 bash + $ wget -qO- https://raw.github.com/progrium/dokku/v0.3.2/bootstrap.sh | sudo DOKKU_TAG=v0.3.2 bash ## Documentation diff --git a/contrib/dokku-installer.rb b/contrib/dokku-installer.rb index 6506fc176..9c32b8b87 100755 --- a/contrib/dokku-installer.rb +++ b/contrib/dokku-installer.rb @@ -21,7 +21,7 @@ if ARGV[0] == "onboot" exit end -version = "v0.3.1" +version = "v0.3.2" dokku_root = ENV["DOKKU_ROOT"] || "/home/dokku" admin_key = `cat /root/.ssh/authorized_keys`.split("\n").first hostname = `bash -c '[[ $(dig +short $HOSTNAME) ]] && echo $HOSTNAME || curl icanhazip.com'`.strip diff --git a/docs/installation.md b/docs/installation.md index 92f20125e..301c9d760 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -11,7 +11,7 @@ Ubuntu 14.04 x64 x64. Ideally have a domain ready to point to your host. It's de To install the latest stable version of dokku, you can run the following bootstrapper command: ```bash -wget -qO- https://raw.github.com/progrium/dokku/v0.3.1/bootstrap.sh | sudo DOKKU_TAG=v0.3.1 bash +wget -qO- https://raw.github.com/progrium/dokku/v0.3.2/bootstrap.sh | sudo DOKKU_TAG=v0.3.2 bash ``` ## Configuring