Skip to content

Commit

Permalink
Releasing 0.7.5 (#3667)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggreif authored Dec 23, 2022
1 parent ea0835d commit 1c2f749
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Motoko compiler changelog

## 0.7.5 (2022-12-23)

* motoko (`moc`)

* Add new primitives for a default timer mechanism (#3542). These are
``` Motoko
setTimer : (delayNanos : Nat64, recurring : Bool, job : () -> async ()) -> (id : Nat)
cancelTimer : (id : Nat) -> ()
```
By defining a `system func timer` the default mechanism can be overridden by a custom
By defining a `system func timer` the default mechanism can now be overridden by a custom
implementation. Additionally by supplying the command-line flag `-no-timer` all aspects
of timers can be suppressed, e.g. for space- or security-sensitive purposes, thus effectively
reverting canisters to the pre-timers era.
Expand Down

0 comments on commit 1c2f749

Please sign in to comment.