From a59993e54cfe936f0ca8eea9552c3284f862d21b Mon Sep 17 00:00:00 2001 From: Marty Wallace Date: Mon, 16 Mar 2015 17:27:56 +1100 Subject: [PATCH] 1.2.0. --- README.md | 5 +++++ server/tempest/Tempest/Tempest.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1af1343..76bed8e 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,11 @@ Tempest makes use of various tools to streamline the development process: ## Releases. +* [1.2.0](https://github.com/MartyWallace/Tempest/releases/tag/1.2.0) + * Renamed Responder to Controller. + * Added ability to pass arbitrary data to controllers via route definitions. + * Added behaviour where Tempest will look for templates with a file-name matching the request URI if no route definitions matched. + * [1.1.0](https://github.com/MartyWallace/Tempest/releases/tag/1.1.0) * Greatly improved error handling; you can now handle specific HTTP errors buy placing a Twig template with the same name into `/html/_status/`. * Cleaned up templates. diff --git a/server/tempest/Tempest/Tempest.php b/server/tempest/Tempest/Tempest.php index 3959b7d..3c1f3ca 100644 --- a/server/tempest/Tempest/Tempest.php +++ b/server/tempest/Tempest/Tempest.php @@ -340,6 +340,6 @@ public function getServices(){ return $this->services; } * * @return string */ - public function getVersion(){ return '1.1.0'; } + public function getVersion(){ return '1.2.0'; } } \ No newline at end of file