diff --git a/HISTORY.md b/HISTORY.md index 0812f3333..bacb60464 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,23 @@ # History +## 0.3.1 + +- 647b2157: @josegonzalez Update HISTORY.md for 0.3.0 +- #359: @plietar Remove plugins before copying them again +- #573: @eriknomitch Use command instead of which for apt-get existential check in bootstrap.sh +- #579: @motin Plugin nginx-vhosts includes files in folder nginx.conf.d +- #607: @fbochu Use PLUGIN_PATH in dokku default case +- #617: @markstos Document what bootstrap.sh is doing +- #758: @josegonzalez Make ENV file readable only from dokku user. Closes #621 +- #699: @tombell Actually suppress the output from `git_archive_all` +- #702: @jazzzz Allows config:set to set parameters values with spaces +- #754: @josegonzalez Remove all references to Ubuntu 12.04. Refs #238 +- #755: @josegonzalez Setup dokku-installer within Vagrant VM on first provision +- #759: @josegonzalez Create an `apps` core plugin +- #760: @josegonzalez Formatting +- #761: @josegonzalez Add dokku-registry to list. Closes #716 +- #762: @josegonzalez Update template for dokku docs + ## 0.3.0 - Added git submodules support diff --git a/README.md b/README.md index f6b60d867..ce422d53d 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.0/bootstrap.sh | sudo DOKKU_TAG=v0.3.0 bash + $ wget -qO- https://raw.github.com/progrium/dokku/v0.3.1/bootstrap.sh | sudo DOKKU_TAG=v0.3.1 bash ## Documentation diff --git a/contrib/dokku-installer.rb b/contrib/dokku-installer.rb index 938ca8544..6506fc176 100755 --- a/contrib/dokku-installer.rb +++ b/contrib/dokku-installer.rb @@ -21,7 +21,7 @@ if ARGV[0] == "onboot" exit end -version = "v0.3.0" +version = "v0.3.1" 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 86f2732d4..92f20125e 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.0/bootstrap.sh | sudo DOKKU_TAG=v0.3.0 bash +wget -qO- https://raw.github.com/progrium/dokku/v0.3.1/bootstrap.sh | sudo DOKKU_TAG=v0.3.1 bash ``` ## Configuring