From 5676dbc4c6bea9837e36aded1897221bcf4cdee6 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 24 Aug 2015 16:01:28 -0400 Subject: [PATCH] Release 0.3.26 --- HISTORY.md | 20 ++++++++++++++++++++ README.md | 4 ++-- contrib/dokku-installer.rb | 2 +- docs/home.html | 4 ++-- docs/index.md | 4 ++-- docs/installation.md | 4 ++-- 6 files changed, 29 insertions(+), 9 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index af0854c4a..fb4cb16ba 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,25 @@ # History +## 0.3.26 + +This release has a few new features, the largest of which is switching from buildstep to herokuish for building containers. Going forward, this should help ensure that built containers are as close to heroku containers as possible, and also allow us to be on the cutting edge of heroku buildpack support. Props to @michaelshobbs for his work on herokuish. + +### Bug Fixes + +- #1401: @josegonzalez Install apt-transport-https before adding https-backed apt sources + +### New Features + +- #1128: @michaelshobbs Switch from buildstep to herokuish +- #1399: @basicer Make dokku play nice when there are multiple receive-app hooks +- #1413: @michaelshobbs support comments in DOKKU_SCALE and print contents on deploy + +### Documentation + +- #1400: @josegonzalez Fix HISTORY.md formatting +- #1410: @josegonzalez Clarify DOKKU_SCALE usage +- #1411: @josegonzalez Clarify `ps:scale` example + ## 0.3.25 This release is a bugfix release fixing a broken 0.3.25 apt-get installation. diff --git a/README.md b/README.md index 253d38a08..1d9a9600f 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. S To install the latest stable release, you can run the following commands as a user that has access to `sudo`: - wget https://raw.github.com/progrium/dokku/v0.3.25/bootstrap.sh - sudo DOKKU_TAG=v0.3.25 bash bootstrap.sh + wget https://raw.github.com/progrium/dokku/v0.3.26/bootstrap.sh + sudo DOKKU_TAG=v0.3.26 bash bootstrap.sh ### Upgrading diff --git a/contrib/dokku-installer.rb b/contrib/dokku-installer.rb index ba7821962..05c5676fa 100755 --- a/contrib/dokku-installer.rb +++ b/contrib/dokku-installer.rb @@ -21,7 +21,7 @@ if ARGV[0] == "onboot" exit end -version = "v0.3.25" +version = "v0.3.26" dokku_root = ENV["DOKKU_ROOT"] || "/home/dokku" admin_keys = `cat /root/.ssh/authorized_keys`.split("\n") hostname = `bash -c '[[ $(dig +short $HOSTNAME) ]] && echo $HOSTNAME || curl icanhazip.com'`.strip diff --git a/docs/home.html b/docs/home.html index d1a1d8332..db01d6187 100644 --- a/docs/home.html +++ b/docs/home.html @@ -64,12 +64,12 @@

~ $ - wget https://raw.github.com/progrium/dokku/v0.3.25/bootstrap.sh + wget https://raw.github.com/progrium/dokku/v0.3.26/bootstrap.sh

~ $ - sudo DOKKU_TAG=v0.3.25 bash bootstrap.sh + sudo DOKKU_TAG=v0.3.26 bash bootstrap.sh

# => Go to your server's IP and follow the web installer diff --git a/docs/index.md b/docs/index.md index 0e7cf03cb..816c5d3ef 100644 --- a/docs/index.md +++ b/docs/index.md @@ -15,12 +15,12 @@

~ $ - wget https://raw.github.com/progrium/dokku/v0.3.25/bootstrap.sh + wget https://raw.github.com/progrium/dokku/v0.3.26/bootstrap.sh

~ $ - sudo DOKKU_TAG=v0.3.25 bash bootstrap.sh + sudo DOKKU_TAG=v0.3.26 bash bootstrap.sh

# => Go to your server's IP and follow the web installer diff --git a/docs/installation.md b/docs/installation.md index 2f58ad2f8..2161b6236 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -14,8 +14,8 @@ To install the latest stable version of dokku, you can run the following bootstr ```shell # installs dokku via apt-get -wget https://raw.github.com/progrium/dokku/v0.3.25/bootstrap.sh -sudo DOKKU_TAG=v0.3.25 bash bootstrap.sh +wget https://raw.github.com/progrium/dokku/v0.3.26/bootstrap.sh +sudo DOKKU_TAG=v0.3.26 bash bootstrap.sh # By default, this will do cli-based setup, though you may *also* # go to your server's IP and follow the web installer