Skip to content

Commit

Permalink
0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kindoflew committed Aug 27, 2021
1 parent 97cda9a commit c64f1b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 0.3.1
* bugfix: removed `postinstall` script as it was borking actual component installation

## 0.3.0
* DEPRECATED: `onEnter` and `onExit` are being replaced with `threshold` prop. This is mostly because the common convention seems to be that `on<VERB>` props usually take a function and standards are important. Also, `threshold` will take numbers instead of booleans so the user has more control over when effects are active. To switch from old to new, `onEnter=true` is now `threshold={{top: 0}}` and `onExit=true` is `threshold={{bottom: 0}}`.
* add JSDoc comments to props because they are fancy.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svelte-parallax",
"author": "Lewis DAvanzo",
"version": "0.3.0",
"version": "0.3.1",
"license": "MIT",
"svelte": "src/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit c64f1b9

Please sign in to comment.