Skip to content

Commit

Permalink
chore(deploy): Release (#74)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Willy Brauner and github-actions[bot] authored Jul 24, 2023
1 parent f6806e5 commit 6e435ec
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 24 deletions.
23 changes: 0 additions & 23 deletions .changeset/nervous-carrots-grow.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/interpol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @wbe/interpol

## 0.5.0

### Minor Changes

- f6806e5: breaking changes: callbacks return properties without object.

```js
new Interpol({
// Old params
onUpdate: ({ props, time, progress }) => {},
onComplete: ({ props, time, progress }) => {},
// New params
onUpdate: (props, time, progress) => {},
onComplete: (props, time, progress) => {},
})

new Timeline({
// ...
// new Params
onUpdate: (time, progress) => {},
onComplete: (time, progress) => {},
})
```

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/interpol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wbe/interpol",
"version": "0.4.0",
"version": "0.5.0",
"type": "module",
"files": [
"dist"
Expand Down

0 comments on commit 6e435ec

Please sign in to comment.