diff options
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a344e3..a6bda6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,6 +75,16 @@ entry!(MyEntry, ["a", "b", "c"]) entry!["a", "b", "c"] ``` +7. **\[macros\]** Added `dispatcher!` macro with implicit entry/dispatcher name derivation + +```rust +// implicit +dispatcher!("remote.add" /*, CMDRemoteAdd => EntryRemoteAdd */); + +// explicit +dispatcher!("remote.remove", CMDRemoteRemove => EntryRemoteRemove); +``` + #### **BREAKING CHANGES** (API CHANGES): 1. **\[core\]** Panic Unwind will not be supported when the `async` feature is enabled |
