diff options
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a6bda6b..36806ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -108,6 +108,20 @@ fn render(prev: Previous) { // Implicitly introduces `__renderer_inner_result` 5. **\[macros\]** Moved the `entry!`, `route!`, `#[program_setup]` macros into the `extra_macros` feature +6. **\[macros\]** The `crate::Next` generated by `gen_program!()` now requires explicit import into the project + +```rust +use crate::Next; + +#[chain] +fn handle_cmd(args: EntryCmd) -> Next { + // ^^^^\_ requires explicit import + // ... +} + +gen_program!(); +``` + --- ### Release 0.1.8 (2026-05-18) |
