Skip to content

Commit 82280b8

Browse files
committed
v0.12.0 release
1 parent fc16998 commit 82280b8

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/)
77
and this project adheres to [Semantic Versioning](http://semver.org/).
88

9+
## [v0.12.0](https://github.com/linna/app/compare/v0.11.0...v0.12.0) - 2017-10-24
10+
11+
### Changed
12+
* require [linna/framework v0.22.0](https://github.com/linna/framework/releases/tag/v0.22.0)
13+
914
## [v0.11.0](https://github.com/linna/app/compare/v0.10.1...v0.11.0) - 2017-10-04
1015

1116
### Changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
},
1717
"require": {
1818
"php": ">=7.0.0",
19-
"linna/framework": "^v0.21"
19+
"linna/framework": "^v0.22"
2020
}
2121
}

config/injections.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Linna\Storage\PdoStorage::class => [
1414
0 => $config['pdo_mysql'],
1515
],
16-
Linna\Auth\Password::class => [
16+
Linna\Authentication\Password::class => [
1717
0 => $config['password'],
1818
],
1919
App\Templates\HtmlTemplate::class => [

src/Models/NullModel.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,4 @@
1919
*/
2020
class NullModel extends Model
2121
{
22-
/**
23-
* Constructor.
24-
*/
25-
//public function __construct()
26-
//{
27-
//parent::__construct();
28-
//}
2922
}

src/Views/E404View.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use App\Models\NullModel;
1515
use App\Templates\HtmlTemplate;
16-
use Linna\Auth\Authenticate;
16+
use Linna\Authentication\Authenticate;
1717
use Linna\Mvc\View;
1818

1919
/**

src/Views/HomeView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use App\Models\HomeModel;
1515
use App\Templates\HtmlTemplate;
16-
use Linna\Auth\Authenticate;
16+
use Linna\Authentication\Authenticate;
1717
use Linna\Mvc\View;
1818

1919
/**

0 commit comments

Comments
 (0)