Skip to content

actuate-v0.15.0

Compare
Choose a tag to compare
@matthunz matthunz released this 03 Dec 21:14
· 78 commits to main since this release

0.15.0 - 2024-12-03

Breaking changes

  • Add #[actuate(path = "..")] attribute to Data macro and use fully-qualified path to Actuate by default (b159478).
    • This allows for use of the Data macro without importing the full prelude.
  • Replace DynCompose::new with dyn_compose constructor fn (9d65ec8).
  • Return Rc from use_context
    • fn use_context<T: 'static>(cx: ScopeState) -> Result<&Rc<T>, ContextError<T>> { .. }
    • This allows for cloning context into 'static environments.