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