Skip to content

Commit

Permalink
Merge branch 'master' into update-mailer-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
serajoddin-aliabadi authored Mar 4, 2024
2 parents d8e205c + 66e5f98 commit a51ba7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DocsV2/docs/Scheduler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ In other words, if the same scheduled task is due but another instance of it is
scheduler
.Schedule<SomeInvocable>()
.EveryMinute()
.PreventOverlapping("SomeInvocable");
.PreventOverlapping(nameof(SomeInvocable));
```
This method takes in one parameter - a unique key (`string`) among all your scheduled tasks. This makes sure Coravel knows which task to lock and release.

Expand Down
2 changes: 1 addition & 1 deletion Src/Coravel.Mailer/Coravel.Mailer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>.net6.0</TargetFramework>
<AddRazorSupportForMvc>True</AddRazorSupportForMvc>
<PackageId>Coravel.Mailer</PackageId>
<Version>5.0.0</Version>
<Version>5.0.1</Version>
<Authors>James Hickey</Authors>
<Company>-</Company>
<Title>Coravel.Mailer</Title>
Expand Down
2 changes: 1 addition & 1 deletion Src/Coravel/Coravel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>.net6.0</TargetFramework>
<PackageId>Coravel</PackageId>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<Authors>James Hickey</Authors>
<Company>-</Company>
<Title>Coravel</Title>
Expand Down

0 comments on commit a51ba7f

Please sign in to comment.