From b2fd5676eb821c1ee85dcc48ce028d820ce1d618 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Wed, 6 Jul 2016 18:39:17 -0400 Subject: [PATCH] Release 0.6.5 --- HISTORY.md | 23 +++++++++++++++ README.md | 4 +-- contrib/dokku-installer.py | 2 +- deb.mk | 2 +- debian/control | 2 +- docs/assets/favicons/browserconfig.xml | 8 +++--- docs/assets/favicons/manifest.json | 12 ++++---- docs/assets/style.css | 4 +-- docs/assets/versions.json | 2 +- docs/development/release-process.md | 2 +- docs/getting-started/installation.md | 4 +-- docs/home.html | 40 +++++++++++++------------- docs/template.html | 36 +++++++++++------------ plugins/00_dokku-standard/plugin.toml | 2 +- plugins/20_events/plugin.toml | 2 +- plugins/apps/plugin.toml | 2 +- plugins/build-env/plugin.toml | 2 +- plugins/certs/plugin.toml | 2 +- plugins/checks/plugin.toml | 2 +- plugins/common/plugin.toml | 2 +- plugins/config/plugin.toml | 2 +- plugins/docker-options/plugin.toml | 2 +- plugins/domains/plugin.toml | 2 +- plugins/enter/plugin.toml | 2 +- plugins/git/plugin.toml | 2 +- plugins/logs/plugin.toml | 2 +- plugins/named-containers/plugin.toml | 2 +- plugins/nginx-vhosts/plugin.toml | 2 +- plugins/plugin/plugin.toml | 2 +- plugins/proxy/plugin.toml | 2 +- plugins/ps/plugin.toml | 2 +- plugins/shell/plugin.toml | 2 +- plugins/storage/plugin.toml | 2 +- plugins/tags/plugin.toml | 2 +- plugins/tar/plugin.toml | 2 +- 35 files changed, 104 insertions(+), 81 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b6fbb4389..9f2809b6f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,28 @@ # History +This was a big documentation release with a minor bugfix to the `app.json` functionality introduced in 0.5.0. + +Thanks to all the contributors who helped with this release! + +## 0.6.5 + +### Bug Fixes + +- #2301: @michaelshobbs Fix app.json extraction in dockerfile apps not using /app + +### New Features + +- #2297: @josegonzalez Add plugin trigger to override the image repository + +### Documentation + +- #2296: @josegonzalez Add an example plugin trigger for cache busting Dockerfile builds +- #2295: @josegonzalez Add documentation for the apps, repo, and tar plugin +- #2292: @josegonzalez General documentation cleanup +- #2291: @josegonzalez Clean up documentation surrounding persistent storage +- #2289: @PeterDaveHello Optimize png images using zopflipng +- #2282: @prodicus Fixed link to sponsors doc + ## 0.6.4 Included in this release are a couple of bug fixes for existing features. diff --git a/README.md b/README.md index d019ba63a..255f89e78 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.4/bootstrap.sh - sudo DOKKU_TAG=v0.6.4 bash bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.5/bootstrap.sh + sudo DOKKU_TAG=v0.6.5 bash bootstrap.sh ### Upgrading diff --git a/contrib/dokku-installer.py b/contrib/dokku-installer.py index 6c29011d4..f3257262c 100755 --- a/contrib/dokku-installer.py +++ b/contrib/dokku-installer.py @@ -9,7 +9,7 @@ import subprocess import sys import threading -VERSION = 'v0.6.4' +VERSION = 'v0.6.5' hostname = '' try: diff --git a/deb.mk b/deb.mk index 27875cc30..04d767d94 100644 --- a/deb.mk +++ b/deb.mk @@ -1,6 +1,6 @@ HEROKUISH_DESCRIPTION = 'Herokuish uses Docker and Buildpacks to build applications like Heroku' HEROKUISH_REPO_NAME ?= gliderlabs/herokuish -HEROKUISH_VERSION ?= 0.3.13 +HEROKUISH_VERSION ?= 0.3.14 HEROKUISH_ARCHITECTURE = amd64 HEROKUISH_PACKAGE_NAME = herokuish_$(HEROKUISH_VERSION)_$(HEROKUISH_ARCHITECTURE).deb diff --git a/debian/control b/debian/control index 454dcafc6..9c7a44914 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Package: dokku -Version: 0.6.4 +Version: 0.6.5 Section: web Priority: optional Architecture: amd64 diff --git a/docs/assets/favicons/browserconfig.xml b/docs/assets/favicons/browserconfig.xml index e6ed1255f..6108a9597 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 a83a07957..c3d52c9c6 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.4\/docs\/assets\/favicons\/android-chrome-36x36.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/docs\/assets\/favicons\/android-chrome-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.4\/docs\/assets\/favicons\/android-chrome-48x48.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/docs\/assets\/favicons\/android-chrome-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.4\/docs\/assets\/favicons\/android-chrome-72x72.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/docs\/assets\/favicons\/android-chrome-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.4\/docs\/assets\/favicons\/android-chrome-96x96.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/docs\/assets\/favicons\/android-chrome-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.4\/docs\/assets\/favicons\/android-chrome-144x144.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/docs\/assets\/favicons\/android-chrome-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.4\/docs\/assets\/favicons\/android-chrome-192x192.png", + "src": "https:\/\/cdn.rawgit.com\/progrium\/dokku\/v0.6.5\/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 ddbbb7127..cc7fe388a 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.4/docs/assets/dokku.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.5/docs/assets/dokku.png); text-indent: 40px; } .blurb { color: #424242; background-color: #ededed; - background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.4/docs/assets/gplaypattern.png); + background-image: url(https://cdn.rawgit.com/dokku/dokku/v0.6.5/docs/assets/gplaypattern.png); padding: 45px 0; text-align: center; } diff --git a/docs/assets/versions.json b/docs/assets/versions.json index dadb522d7..886d4f568 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.4" + "0.6.5" ] } diff --git a/docs/development/release-process.md b/docs/development/release-process.md index 3aa010bd9..1c4d85a88 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.4-2 (Mon Feb 22 23:20:37 CET 2016)" +# wait for "==> build-arch: ==> Finished making: dokku 0.6.5-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/getting-started/installation.md b/docs/getting-started/installation.md index 4020fa6bd..3a4cacdc5 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/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.4/bootstrap.sh -sudo DOKKU_TAG=v0.6.4 bash bootstrap.sh +wget https://raw.githubusercontent.com/dokku/dokku/v0.6.5/bootstrap.sh +sudo DOKKU_TAG=v0.6.5 bash bootstrap.sh ``` The installation process takes about 5-10 minutes, depending upon internet connection speed. diff --git a/docs/home.html b/docs/home.html index 1ce1ba483..8199ca79f 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.4/bootstrap.sh + wget https://raw.githubusercontent.com/dokku/dokku/v0.6.5/bootstrap.sh

$ - sudo DOKKU_TAG=v0.6.4 bash bootstrap.sh + sudo DOKKU_TAG=v0.6.5 bash bootstrap.sh

 # go to your server's IP and follow the web installer diff --git a/docs/template.html b/docs/template.html index 6061f9ec7..8af9b7ba7 100644 --- a/docs/template.html +++ b/docs/template.html @@ -10,26 +10,26 @@ Dokku - The smallest PaaS implementation you've ever seen - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - + + - +