From 7dd1d839f7528f31405b28b42f84248dc9fe0784 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Feb 2023 13:13:13 -0500 Subject: [PATCH] Version Packages (#15) Co-authored-by: github-actions[bot] Co-authored-by: beefchimi --- .changeset/fifty-plums-compare.md | 7 ------- .changeset/flat-queens-tap.md | 5 ----- .changeset/lazy-rings-cough.md | 19 ------------------- .changeset/mean-fishes-attend.md | 5 ----- .changeset/perfect-mice-judge.md | 5 ----- .changeset/smart-plums-shave.md | 5 ----- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- 8 files changed, 24 insertions(+), 47 deletions(-) delete mode 100644 .changeset/fifty-plums-compare.md delete mode 100644 .changeset/flat-queens-tap.md delete mode 100644 .changeset/lazy-rings-cough.md delete mode 100644 .changeset/mean-fishes-attend.md delete mode 100644 .changeset/perfect-mice-judge.md delete mode 100644 .changeset/smart-plums-shave.md diff --git a/.changeset/fifty-plums-compare.md b/.changeset/fifty-plums-compare.md deleted file mode 100644 index d7072a4..0000000 --- a/.changeset/fifty-plums-compare.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'earwurm': minor ---- - -`Stack` now correctly passes a custom `Sound > id` _(instead of appending as a `suffix`)_. -Fixed a bug where `Stack` was double incrementing `totalSoundsCreated`. -Fixed an issue with `#create` not filtering "out of bounds" Sounds. diff --git a/.changeset/flat-queens-tap.md b/.changeset/flat-queens-tap.md deleted file mode 100644 index d8ab575..0000000 --- a/.changeset/flat-queens-tap.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'earwurm': patch ---- - -Mock AudioContext for testing. diff --git a/.changeset/lazy-rings-cough.md b/.changeset/lazy-rings-cough.md deleted file mode 100644 index 3ac7ecc..0000000 --- a/.changeset/lazy-rings-cough.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -'earwurm': minor ---- - -Bump node to `18.14.2`. - -Bump various dependencies. - -Fix issue with `Earworm > state` being set to `suspended` even after `closed`. - -Fix bug with `Sound` throwing an error on subsequent calls to `.play()`. - -Fix bug with `Sound > pause()` not working. - -Fix bug with `volume` and `mute` setters not actually changing `gain.value`. - -Both `Stack` and `Sound` can now accept a `GainNode` _(in addition to an `AudioNode`)_ as their `destination`. - -Simplify exported `types`. diff --git a/.changeset/mean-fishes-attend.md b/.changeset/mean-fishes-attend.md deleted file mode 100644 index 6acb485..0000000 --- a/.changeset/mean-fishes-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'earwurm': patch ---- - -Further improve Web Audio mocks and helpers tests. diff --git a/.changeset/perfect-mice-judge.md b/.changeset/perfect-mice-judge.md deleted file mode 100644 index 2348cf4..0000000 --- a/.changeset/perfect-mice-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'earwurm': patch ---- - -Initial testing setup. diff --git a/.changeset/smart-plums-shave.md b/.changeset/smart-plums-shave.md deleted file mode 100644 index 54c74d9..0000000 --- a/.changeset/smart-plums-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'earwurm': patch ---- - -Further adjust test env for better Web Audio testing. diff --git a/CHANGELOG.md b/CHANGELOG.md index 793e415..9dd0594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # earwurm +## 0.2.0 + +### Minor Changes + +- 87464b3: `Stack` now correctly passes a custom `Sound > id` _(instead of appending as a `suffix`)_. +- 87464b3: Fixed a bug where `Stack` was double incrementing `totalSoundsCreated`. +- 87464b3: Fixed an issue with `#create` not filtering "out of bounds" Sounds. +- f98e04a: Bump node to `18.14.2`. +- f98e04a: Bump various dependencies. +- f98e04a: Fix issue with `Earworm > state` being set to `suspended` even after `closed`. +- f98e04a: Fix bug with `Sound` throwing an error on subsequent calls to `.play()`. +- f98e04a: Fix bug with `Sound > pause()` not working. +- f98e04a: Fix bug with `volume` and `mute` setters not actually changing `gain.value`. +- f98e04a: Both `Stack` and `Sound` can now accept a `GainNode` _(in addition to an `AudioNode`)_ as their `destination`. +- f98e04a: Simplify exported `types`. + +### Patch Changes + +- dc3dfe3: Mock AudioContext for testing. +- f019b47: Further improve Web Audio mocks and helpers tests. +- dcc5adc: Initial testing setup. +- fde15fb: Further adjust test env for better Web Audio testing. + ## 0.1.0 ### Minor Changes diff --git a/package.json b/package.json index 76b42d4..8841298 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "earwurm", - "version": "0.1.0", + "version": "0.2.0", "description": "Browser audio for the modern age", "author": "Curtis Dulmage", "license": "ISC",