Skip to content

Commit

Permalink
Prepare Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bryannielsen authored and github-actions[bot] committed Sep 23, 2024
1 parent 530688a commit 9edec1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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.1] - 2024-09-23

### Fixed

- Support for arguments on custom Date fields
Expand Down Expand Up @@ -247,7 +249,9 @@

- Initial Beta Release

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/Fieldtypes/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function apply(FieldContent $content, array $parameters = [])

// If the fieldtype has already processed and changed the $data so that
// it is no longer a unix timestamp we will end the processing here
if(!is_numeric((string) $data)) {
if (! is_numeric((string) $data)) {
return $data;
}

Expand Down

0 comments on commit 9edec1b

Please sign in to comment.