-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from leagueutils/release/1.1.0
chore: version bumps & release docs
- Loading branch information
Showing
4 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Changelog | ||
|
||
This page contains a fairly detailed, fairly complete, fairly readable summary of what changed with each version of the | ||
library. | ||
|
||
## v1.1.0 | ||
This release adds: | ||
- an execution limit for triggers. By specifying the `max_trigger_count` parameter, a trigger can be instructed to | ||
terminate after a certain number of executions. | ||
- a way to dynamically terminate trigger execution from within the decorated function. By raising | ||
`triggers.StopRunning()`, the containing trigger will be instructed to exit after finishing the current iteration. | ||
- a `ScheduledTrigger` class that allows triggers to run on one or more predefined dates. | ||
- a programmatic interface (`triggers.apply_trigger()`) to schedule triggers at runtime | ||
|
||
## v1.0.0 | ||
Initial spin-off from [coc.py](https://github.com/mathsman5133/coc.py). Already comes with an `IntervalTrigger` and a | ||
`CronTrigger`, error handling, logging and a framework for extension. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters