Skip to content

Commit 40fc349

Browse files
committed
Updated changelog
1 parent 6953ab2 commit 40fc349

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 3.0.1 - 2018-03-18
8+
### Changed
9+
- Updated README.md
10+
- Deprecated `email:retry`, please use `email:resend`
11+
712
## 3.0.0 - 2017-12-22
813
### Added
914
- Support for a custom sender per e-mail.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,13 +164,13 @@ Email::compose()
164164
##### Resend all failed e-mails
165165

166166
```bash
167-
php artisan email:retry
167+
php artisan email:resend
168168
```
169169

170170
##### Resend a specific failed e-mail
171171

172172
```bash
173-
php artisan email:retry 1
173+
php artisan email:resend 1
174174
```
175175

176176
#### Encryption (Optional)

tests/RetryFailedEmailsCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function an_email_cannot_be_reset_if_the_max_attempt_count_has_not_been_reached(
2525

2626
$this->assertEquals(1, DB::table('emails')->count());
2727

28-
$this->artisan('email:retry');
28+
$this->artisan('email:resend');
2929

3030
$this->assertEquals(1, DB::table('emails')->count());
3131

0 commit comments

Comments
 (0)