v1.0.0
Features
- ๐ Atomic state updates
- ๐งฎ Computed values come with caching and lazy evaluation
- ๐ฌ Subscription to state changes
- ๐งฉ Utility functions (compose, curry, pick, append, update)
- ๐ฃ No external dependency, Ramda library is removed
Breaking changes
๐ฌ Actions
- Actions must now be wrapped with the
action
function - New declaration interface:
action(state => payload => { ... })
๐งฎ Computed values
- Computed values must now be wrapped with the
computed
function - Payload from computed functions has been removed
- New declaration interface:
computed(state => ...)