diff --git a/HISTORY.md b/HISTORY.md index 5d7fa3537..188f9ca57 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,26 @@ # History +## 0.6.3 + +This release is mostly a documentation release. + +Thanks to all the contributors who helped with this release! + +### Bug Fixes + +- #2258: @michaelshobbs Support domains that start with digits per RFC1123 + +### New Features + +- #2260: @josegonzalez Add ability to remove a specific port mapping tuple +- #2261: @josegonzalez Drop apparmor requirement to support systemd systems + +### Documentation + +- #2262: @josegonzalez Document that REV is optional in the receive-app trigger +- #2264: @troy Use Markdown for sponsors page, so it's clickable from GitHub +- #2266: @michaelshobbs Add documentation surrounding proxy port mapping + ## 0.6.2 This release is a minor bugfix for the web setup, and also reverts a previous addition to the persistent storage. Please see the pull requests for more details. diff --git a/README.md b/README.md index 1299fcb0c..a86c7f706 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Docker powered mini-Heroku. The smallest PaaS implementation you've ever seen. To install the latest stable release, you can run the following commands as a user that has access to `sudo`: - wget https://raw.githubusercontent.com/dokku/dokku/v0.6.2/bootstrap.sh - sudo DOKKU_TAG=v0.6.2 bash bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.3/bootstrap.sh + sudo DOKKU_TAG=v0.6.3 bash bootstrap.sh ### Upgrading diff --git a/contrib/dokku-installer.py b/contrib/dokku-installer.py index 8633543bd..b04f98daa 100755 --- a/contrib/dokku-installer.py +++ b/contrib/dokku-installer.py @@ -9,7 +9,7 @@ import subprocess import sys import threading -VERSION = 'v0.6.2' +VERSION = 'v0.6.3' hostname = '' try: diff --git a/debian/control b/debian/control index 7d331d002..5327bfcbb 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.6.2 +Version: 0.6.3 Section: web Priority: optional Architecture: amd64 diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index c318c345f..6aab9526d 100644 --- a/docs/assets/favicons/browserconfig.xml +++ b/docs/assets/favicons/browserconfig.xml @@ -2,10 +2,10 @@ - - - - + + + + #da532c diff --git a/docs/assets/favicons/manifest.json b/docs/assets/favicons/manifest.json index b4cafbac5..d03be5d77 100644 --- a/docs/assets/favicons/manifest.json +++ b/docs/assets/favicons/manifest.json @@ -2,37 +2,37 @@ "name": "Dokku", "icons": [ { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.2\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.3\/docs\/assets\/favicons\/android-chrome-192x192.png", "sizes": "192x192", "type": "image\/png", "density": "4.0" diff --git a/docs/assets/style.css b/docs/assets/style.css index 79732224b..51bf7efe5 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -36,13 +36,13 @@ h1 { background-repeat: no-repeat; } .header .navbar-brand a { - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.2/docs/assets/dokku.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.3/docs/assets/dokku.png); text-indent: 40px; } .blurb { color: #424242; background-color: #ededed; - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.2/docs/assets/gplaypattern.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.3/docs/assets/gplaypattern.png); padding: 45px 0; text-align: center; } diff --git a/docs/assets/versions.json b/docs/assets/versions.json index 6c8a689f1..61e485147 100644 --- a/docs/assets/versions.json +++ b/docs/assets/versions.json @@ -3,6 +3,6 @@ "0.3.26", "0.4.14", "0.5.8", - "0.6.2" + "0.6.3" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index f533dbde4..f18a0c8cd 100644 --- a/docs/development/release-process.md +++ b/docs/development/release-process.md @@ -66,7 +66,7 @@ The workflow looks like this: ```shell # having dokku-arch in ../dokku-arch vagrant up build-arch -# wait for "==> build-arch: ==> Finished making: dokku 0.6.2-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.6.3-2 (Mon Feb 22 23:20:37 CET 2016)" cd ../dokku-arch git add PKGBUILD .SRCINFO git commit -m 'Update to dokku 0.9.9' diff --git a/docs/home.html b/docs/home.html index ac36c7109..05ee087c8 100644 --- a/docs/home.html +++ b/docs/home.html @@ -10,30 +10,30 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - + @@ -95,12 +95,12 @@

$ - wget https://raw.githubusercontent.com/dokku/dokku/v0.6.2/bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.3/bootstrap.sh

$ - sudo DOKKU_TAG=v0.6.2 bash bootstrap.sh + sudo DOKKU_TAG=v0.6.3 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 ca0c30e51..48682e651 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -21,8 +21,8 @@ To install the latest stable version of dokku, you can run the following shell c ```shell # for debian systems, installs dokku via apt-get -wget https://raw.githubusercontent.com/dokku/dokku/v0.6.2/bootstrap.sh -sudo DOKKU_TAG=v0.6.2 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.6.3/bootstrap.sh +sudo DOKKU_TAG=v0.6.3 bash bootstrap.sh ``` The installation process takes about 5-10 minutes, depending upon internet connection speed. diff --git a/docs/template.html b/docs/template.html index 606e75a7f..d1e170648 100644 --- a/docs/template.html +++ b/docs/template.html @@ -10,26 +10,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - +