Skip to content

Commit

Permalink
Prepare Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bryannielsen authored and github-actions[bot] committed Aug 12, 2024
1 parent 7953531 commit 7e5b768
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [1.4.0] - 2024-08-12

### Added

- Timezone argument for GraphQL FormattableDate types
Expand Down Expand Up @@ -240,7 +242,9 @@

- Initial Beta Release

[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...HEAD
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.4.0...HEAD

[1.4.0]: https://github.com/ExpressionEngine/Coilpack/compare/1.3.2...1.4.0

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

Expand Down
2 changes: 1 addition & 1 deletion src/Bootstrap/LoadExpressionEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ protected function setupTemplateLibrary()
{
ee()->load->library('template');
ee()->remove('TMPL');
ee()->set('TMPL', new \Expressionengine\Coilpack\View\TemplateStub());
ee()->set('TMPL', new \Expressionengine\Coilpack\View\TemplateStub);
ee()->TMPL->log_item('Using Coilpack Template Library');

ee()->load->library('api');
Expand Down
2 changes: 1 addition & 1 deletion src/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function runCli($request)
ee()->load->library('core');
ee()->core->bootstrap();

$cli = new \ExpressionEngine\Cli\Cli();
$cli = new \ExpressionEngine\Cli\Cli;

return $cli;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Content/ContentModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function ($field) {
$this->getCustomFields()
);

$layout = $layout ?: new DefaultLayout();
$layout = $layout ?: new DefaultLayout;

return $layout->transform($fields);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Content/Display/DefaultLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function getLayout()
*/
public function transform(array $fields)
{
$display = new LayoutDisplay();
$display = new LayoutDisplay;

// add the tabs they wanted
foreach ($this->layout as $section) {
Expand Down
2 changes: 1 addition & 1 deletion src/Models/File/Column/LocalPath.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected function readPath()
if (is_dir($path)) {
$files = [];
$directory = ee('Model')->get('UploadDestination')->fields('id')->filter('server_path', $this->path)->first();
$mime = new \ExpressionEngine\Library\Mime\MimeType();
$mime = new \ExpressionEngine\Library\Mime\MimeType;
$exclude = ['index.html'];

if ($dh = opendir($path)) {
Expand Down
4 changes: 2 additions & 2 deletions src/boot.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@
is_dir(SYSPATH.'ee/installer/') &&
(! defined('INSTALL_MODE') or INSTALL_MODE != false)
) {
$core = new Core\Installer();
$core = new Core\Installer;
} else {
$core = new Core\ExpressionEngine();
$core = new Core\ExpressionEngine;
}

/*
Expand Down

0 comments on commit 7e5b768

Please sign in to comment.