Skip to content

Commit

Permalink
Requires orisai/clock:^1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Dec 5, 2023
1 parent 540a560 commit 4f7456f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased](https://github.com/orisai/nette-mail/compare/1.0.0...HEAD)

### Changed

- Requires `orisai/clock:^1.2.0`

## [1.0.0](https://github.com/orisai/nette-mail/releases/tag/1.0.0) - 2023-10-29

Initial release
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"nette/http": "^3.1.0",
"nette/mail": "^3.1.10|^4.0.0",
"nette/utils": "^3.1.6|^4.0.0",
"orisai/clock": "^1.1.0",
"orisai/clock": "^1.2.0",
"orisai/exceptions": "^1.1.0",
"orisai/nette-di": "^1.3.0",
"symfony/polyfill-php80": "^1.28"
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Mailer/FileMailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public function testFileName(): void

$mailer->send($message);

$clock->move(1);
$clock->sleep(1);
$mailer->send($message);

$ds = DIRECTORY_SEPARATOR;
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Mailer/TracyPanelMailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public function testFileName(?string $path): void

$mailer->send($message);

$clock->move(1);
$clock->sleep(1);
$mailer->send($message);

$ds = DIRECTORY_SEPARATOR;
Expand Down

0 comments on commit 4f7456f

Please sign in to comment.