Skip to content

Commit

Permalink
bump version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
danigb committed Dec 18, 2024
1 parent dc7f7e4 commit 52ace8e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ drum.getSampleNamesForGroup('kick') => // => ['kick-1', 'kick-2']
- `drum.sampleNames` is deprecated in favour of `drum.getSampleNames()` or `drum.getGroupNames()`
- `drum.getVariations` is now called `drum.getSampleNamesForGroup`

#### Bug fix: SampleGrandPiano stop note

Now you can pass a note name to `stop` method of grand piano:

```js
piano.start("C4");

piano.stop(60); // This worked previously
piano.stop("C4"); // This now works
```

## 0.15.x

#### Disable scheduler with `disableScheduler` option
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smplr",
"version": "0.16.0",
"version": "0.16.1",
"homepage": "https://github.com/danigb/smplr#readme",
"description": "A Sampled collection of instruments",
"main": "dist/index.js",
Expand Down

0 comments on commit 52ace8e

Please sign in to comment.