From dbfd2373fe902c9e81317d135843d9fe78ed9fce Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Fri, 5 Dec 2014 11:33:30 -0700 Subject: [PATCH] version update --- CHANGELOG.md | 14 ++++++++++++++ README.md | 28 ++++++++++++++++++++++++++++ system/defines.php | 2 +- 3 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf84838e..7689142e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v0.9.9 beta +## 12/05/2014 + +1. [](#new) + * Added new `@page` collection type + * Added `ksort` and `contains` Twig filters + * Added `gist` Twig function +2. [](#improved) + * Refactored Page previous/next/adjacent functionality + * Updated to Symfony 2.6 for yaml/console/event-dispatcher libraries + * More PSR code fixes +3. [](#bugfix) + * Fix for over-escaped apostrophes in YAML + # v0.9.8 beta ## 12/01/2014 diff --git a/README.md b/README.md index 676be9349..5f2b4ecbe 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,34 @@ You can download a **ready-built** package from the [Downloads page on http://ge Check out the [install procedures](http://learn.getgrav.org/basics/installation) for more information. +# Adding Functionality + +You can download manually from the [Downloads page on http://getgrav.org](http://getgrav.org/downloads), but the preferred solution is to use the [Grav Package Manager](http://learn.getgrav.org/advanced/grav-gpm) or `GPM`: + +``` +$ bin/gpm index +``` + +This will display all the available plugins and then you can install one ore more with: + +``` +$ bin/gpm install +``` + +# Updating + +To update Grav you should use the [Grav Package Manager](http://learn.getgrav.org/advanced/grav-gpm) or `GPM`: + +``` +$ bin/gpm selfupgrade +``` + +To update plugins and themes: + +``` +$ bin/gpm update +``` + # Contributing We appreciate any contribution to Grav, whether it is related to bugs, grammar, or simply a suggestion or improvement. diff --git a/system/defines.php b/system/defines.php index cd474173e..79219deed 100644 --- a/system/defines.php +++ b/system/defines.php @@ -2,7 +2,7 @@ // Some standard defines define('GRAV', true); -define('GRAV_VERSION', '0.9.8'); +define('GRAV_VERSION', '0.9.9'); define('DS', '/'); // Directories and Paths