Skip to content

Commit 7e5b768

Browse files
bryannielsengithub-actions[bot]
authored andcommitted
Prepare Release 1.4.0
1 parent 7953531 commit 7e5b768

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [1.4.0] - 2024-08-12
6+
57
### Added
68

79
- Timezone argument for GraphQL FormattableDate types
@@ -240,7 +242,9 @@
240242

241243
- Initial Beta Release
242244

243-
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...HEAD
245+
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.4.0...HEAD
246+
247+
[1.4.0]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...1.4.0
244248

245249
[1.3.2]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.1...1.3.2
246250

src/Bootstrap/LoadExpressionEngine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ protected function setupTemplateLibrary()
298298
{
299299
ee()->load->library('template');
300300
ee()->remove('TMPL');
301-
ee()->set('TMPL', new \Expressionengine\Coilpack\View\TemplateStub());
301+
ee()->set('TMPL', new \Expressionengine\Coilpack\View\TemplateStub);
302302
ee()->TMPL->log_item('Using Coilpack Template Library');
303303

304304
ee()->load->library('api');

src/Core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ protected function runCli($request)
100100
ee()->load->library('core');
101101
ee()->core->bootstrap();
102102

103-
$cli = new \ExpressionEngine\Cli\Cli();
103+
$cli = new \ExpressionEngine\Cli\Cli;
104104

105105
return $cli;
106106
}

src/Models/Content/ContentModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function ($field) {
161161
$this->getCustomFields()
162162
);
163163

164-
$layout = $layout ?: new DefaultLayout();
164+
$layout = $layout ?: new DefaultLayout;
165165

166166
return $layout->transform($fields);
167167
}

src/Models/Content/Display/DefaultLayout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function getLayout()
5454
*/
5555
public function transform(array $fields)
5656
{
57-
$display = new LayoutDisplay();
57+
$display = new LayoutDisplay;
5858

5959
// add the tabs they wanted
6060
foreach ($this->layout as $section) {

src/Models/File/Column/LocalPath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected function readPath()
4242
if (is_dir($path)) {
4343
$files = [];
4444
$directory = ee('Model')->get('UploadDestination')->fields('id')->filter('server_path', $this->path)->first();
45-
$mime = new \ExpressionEngine\Library\Mime\MimeType();
45+
$mime = new \ExpressionEngine\Library\Mime\MimeType;
4646
$exclude = ['index.html'];
4747

4848
if ($dh = opendir($path)) {

src/boot.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@
7777
is_dir(SYSPATH.'ee/installer/') &&
7878
(! defined('INSTALL_MODE') or INSTALL_MODE != false)
7979
) {
80-
$core = new Core\Installer();
80+
$core = new Core\Installer;
8181
} else {
82-
$core = new Core\ExpressionEngine();
82+
$core = new Core\ExpressionEngine;
8383
}
8484

8585
/*

0 commit comments

Comments
 (0)