From 0a51dcb6398dc2377d086210d0624996a1df8322 Mon Sep 17 00:00:00 2001 From: Phil Sturgeon Date: Thu, 19 Mar 2015 11:16:43 -0400 Subject: [PATCH] Released 0.12 --- CHANGELOG.md | 22 +++++++++++++++++++++- composer.json | 4 ++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de584f6e..2429b8bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ ### Development -- update github url in CONTRIBUTING.md + +## 0.12.0 - 2015-03-19 + +### Added + +- Added PHP 7.0-dev support. +- Add the support for Laravel 5 paginator. [Issue #153] + +### Changed + +- Now accessing the default and available includes in Transformers via getters [Issue #158] + +### Removed + +- Dropped PHP 5.3 support. Use [v0.11] if you're still stuck on PHP 5.3. +- Removed `getData()` and `getTransformer()` from `League\Fractal\Resource\Collection` as they were already + defined in `ResourceAbstract`. + +[Issue #153]: https://github.com/thephpleague/fractal/pull/153 +[Issue #158]: https://github.com/thephpleague/fractal/pull/158 +[v0.11]: https://github.com/thephpleague/fractal/releases/tag/0.11.0 ## 0.11.0 - 2014-12-10 diff --git a/composer.json b/composer.json index f05bb914..3e249f4f 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "league/fractal", - "description": "Handle the output of complex data structures ready for JSON output.", + "description": "Handle the output of complex data structures ready for API output.", "keywords": [ "league", "api", @@ -45,7 +45,7 @@ }, "extra": { "branch-alias": { - "dev-master": "0.12-dev" + "dev-master": "0.13-dev" } } }