This repository has been archived by the owner on May 11, 2023. It is now read-only.
This release fixes a small regression in the way animations complete. When we introduced the repeat
API in v0.9.0, we also introduced more complexity around when animations are considered "done". This resulted in occasional instances where an animation wouldn't reach its exact to
state; for example, an opacity
animation from 0 to 1 might complete at opacity: 0.99927361
. This release fixes that behavior to ensure we reach the exact final to
state in both repeated and non-repeated animations.
Fixed
⚠️ All animations reach their exactto
state on completion, orfrom
state for odd-numberedrepeat
counts. PR by @parkerziegler here.