Skip to content

Commit

Permalink
Update changelog; bump version for beta release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hvianna committed Dec 11, 2022
1 parent 452dd16 commit 131f4b4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

## version 4.0.0-beta.1 (2022-12-11)

### Added: <!-- {docsify-ignore} -->

+ [`linearBoost`](README.md#linearboost-number) property - amplify low energy values when using [linear amplitude](README.md#linearamplitude-boolean);
+ [`weightingFilter`](README.md#weightingfilter-string) property - select from five different weighting filters for improved spectrum visualization.

## version 4.0.0-beta.0 (2022-05-08)

### 🚨BREAKING CHANGES: <!-- {docsify-ignore} -->
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "audiomotion-analyzer",
"description": "High-resolution real-time graphic audio spectrum analyzer JavaScript module with no dependencies.",
"version": "4.0.0-beta.0",
"version": "4.0.0-beta.1",
"main": "./src/audioMotion-analyzer.js",
"module": "./src/audioMotion-analyzer.js",
"types": "./src/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/audioMotion-analyzer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* audioMotion-analyzer
* High-resolution real-time graphic audio spectrum analyzer JS module
*
* @version 4.0.0-beta.0
* @version 4.0.0-beta.1
* @author Henrique Avila Vianna <hvianna@gmail.com> <https://henriquevianna.com>
* @license AGPL-3.0-or-later
*/

const VERSION = '4.0.0-beta.0';
const VERSION = '4.0.0-beta.1';

// internal constants
const TAU = 2 * Math.PI,
Expand Down

0 comments on commit 131f4b4

Please sign in to comment.