chore(release): 1.0.0 [skip ci]

# 1.0.0 (2024-01-16)

### Bug Fixes

* fix taking a SoundPlayer's state ([90589b8](90589b861d))
* listen to ended event to note playback stopping ([5c822e6](5c822e6542))

### Features

* use GreenPlayer in AudioPlayer ([9617498](961749815c))
This commit is contained in:
semantic-release-bot 2024-01-16 17:44:35 +00:00
parent 76379e62ab
commit 1f4054b068
3 changed files with 20 additions and 3 deletions

17
CHANGELOG.md Normal file
View file

@ -0,0 +1,17 @@
# Changelog
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 1.0.0 (2024-01-16)
### Bug Fixes
* fix taking a SoundPlayer's state ([90589b8](https://github.com/scratchfoundation/scratch-audio/commit/90589b861d46c14d1ae7c365e875f3dd893739a6))
* listen to ended event to note playback stopping ([5c822e6](https://github.com/scratchfoundation/scratch-audio/commit/5c822e654205a9b0a54106e419a11c611a160f42))
### Features
* use GreenPlayer in AudioPlayer ([9617498](https://github.com/scratchfoundation/scratch-audio/commit/961749815c63a4756890590f903cc0da99eaf72d))

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "scratch-audio", "name": "scratch-audio",
"version": "0.0.0", "version": "1.0.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "scratch-audio", "name": "scratch-audio",
"version": "0.0.0", "version": "1.0.0",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"dependencies": { "dependencies": {
"audio-context": "1.0.1", "audio-context": "1.0.1",

View file

@ -1,6 +1,6 @@
{ {
"name": "scratch-audio", "name": "scratch-audio",
"version": "0.0.0", "version": "1.0.0",
"description": "audio engine for scratch 3.0", "description": "audio engine for scratch 3.0",
"main": "dist.js", "main": "dist.js",
"browser": "./src/index.js", "browser": "./src/index.js",