Skip to content

Commit a15c73f

Browse files
committed
[RELEASE] 1.4.0
2 parents d4e266f + b7cbfb8 commit a15c73f

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,22 @@ All notable changes to this project will be documented in this file.
33

44
## Unreleased
55

6+
### Added
7+
8+
### Changed
9+
10+
### Deprecated
11+
12+
### Removed
13+
14+
## 1.4, 2015-01-15 21:13:59
15+
616
### Added
717
* [MailService](https://github.com/app-zap/PHPFramework/blob/develop/classes/Mail/MailService.php) and [MailMessage](https://github.com/app-zap/PHPFramework/blob/develop/classes/Mail/MailMessage.php)
818
* A controller can implement the `getTemplateName()` method to modify the default twig template name.
919
* `Configuration::getSection()` now has an optional 3rd parameter (array) `$defaultValues`
1020
* Simplified routing expressions in `routes.php`
1121

12-
### Changed
13-
1422
### Deprecated
1523

1624
* Deprecated `AbstractController->handle_not_supported_method()`. Use `AbstractController->handleNotSupportedMethod()` instead.

classes/Configuration/DefaultConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static function initialize($application) {
2424
Configuration::set('application', 'application_directory', $applicationDirectory);
2525
Configuration::set('application', 'routes_file', $applicationDirectory . 'routes.php');
2626
Configuration::set('application', 'templates_directory', $applicationDirectory . 'templates/');
27-
Configuration::set('phpframework', 'version', '1.4-dev');
27+
Configuration::set('phpframework', 'version', '1.4');
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)