From 0ac7c4b6bf44c751182df1ea3caf251d7beae70c Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Fri, 9 Jan 2015 15:43:55 -0700 Subject: [PATCH] version update --- CHANGELOG.md | 20 ++++++++++++++++++++ system/defines.php | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c81c880b..19452528e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# v0.9.13 +## 01/09/2015 + +1. [](#new) + * Added new published `true|false` state in page headers + * Added `publish_date` in page headers to automatically publish page + * Added `unpublish_date` in page headers to automatically unpublish page + * Added `dateRange()` capability for collections + * Added ability to dynamically control Cache lifetime programatically + * Added ability to sort by anything in the page header. E.g. `sort: header.taxonomy.year` + * Added various helper methods to collections: `copy, nonVisible, modular, nonModular, published, nonPublished, nonRoutable` +2. [](#improved) + * Modified all Collection methods so they can be chained together: `$collection->published()->visible()` + * Set default Cache lifetime to default of 1 week (604800 seconds) - was infinite + * House-cleaning of some unused methods in Pages object +3. [](#bugfix) + * Fix `uninstall` GPM command that was broken in last release + * Fix for intermitten `undefined index` error when working with Collections + * Fix for date of some pages being set to incorrect future timestamps + # v0.9.12 ## 01/06/2015 diff --git a/system/defines.php b/system/defines.php index 23781f9ed..473292fdf 100644 --- a/system/defines.php +++ b/system/defines.php @@ -2,7 +2,7 @@ // Some standard defines define('GRAV', true); -define('GRAV_VERSION', '0.9.12'); +define('GRAV_VERSION', '0.9.13'); define('DS', '/'); // Directories and Paths