Skip to content

Commit

Permalink
release: 5.0.0 (katspaugh#2256)
Browse files Browse the repository at this point in the history
* bump version: 5.0.0

* use default username
  • Loading branch information
thijstriemstra committed May 3, 2021
1 parent 20e1ec9 commit a262e69
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ jobs:
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token $GITHUB_TOKEN" \
'https://api.github.com/repos/katspaugh/wavesurfer.js/releases' \
-d "{\"tag_name\":\"$NEW_VERSION\", \"name\": \"$NEW_VERSION\", \"owner\": \"wavesurfer.js\" }"
-d "{\"tag_name\":\"$NEW_VERSION\", \"name\": \"$NEW_VERSION\"}"
fi
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
wavesurfer.js changelog
=======================

4.7.0 (unreleased)
5.0.0 (02.05.2021)
------------------
- Add new `vertical` parameter enabling displaying waveforms vertically (#2195)
- Fixed `exportPCM()` to return a Promise containing valid JSON data with `noWindow`
(#1896, #1954)
- Nullify `onaudioprocess` on remove to not execute in background (#2218)
- Playhead plugin: add a new plugin that allows the setting of a independent
"play head", or song-start position. (#2209)
- Markers plugin: fix a bug where markers at the end of a track would cause
Expand All @@ -13,8 +15,6 @@ wavesurfer.js changelog
- Fix mouseup not firing if click & drag a region handle & release outside the
browser window (#2213)
- Added new `showTooltip` param allowing disabling region `title` tooltip (#2213)
- Nullify `onaudioprocess` on remove to not execute in background (#2218)
- Add new `vertical` parameter enabling displaying waveforms vertically (#2195)

4.6.0 (04.03.2021)
------------------
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wavesurfer.js",
"version": "4.6.0",
"version": "5.0.0",
"homepage": "https://wavesurfer-js.org",
"authors": [
"katspaugh <katspaugh@gmail.com>"
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": "wavesurfer.js",
"version": "4.6.0",
"version": "5.0.0",
"description": "Interactive navigable audio visualization using Web Audio and Canvas",
"main": "dist/wavesurfer.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/plugin/playhead/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class PlayheadPlugin {
* used by wavesurfer to correctly instantiate the plugin.
*
* @param {PlayheadPluginParams} params parameters use to initialise the plugin
* @since 4.7.0
* @since 5.0.0
* @return {PluginDefinition} an object representing the plugin
*/
static create(params) {
Expand Down
2 changes: 1 addition & 1 deletion src/util/orientation.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const isProxy = Symbol("isProxy");
* @param {object} target The object to be wrapped and oriented
* @param {bool} vertical Whether the element is oriented vertically
* @returns {Proxy} An oriented object with attr translation via verticalAttrMap
* @since 4.7.0
* @since 5.0.0
*/
export default function withOrientation(target, vertical) {
if (target[isProxy]) {
Expand Down

0 comments on commit a262e69

Please sign in to comment.