diff --git a/README.md b/README.md index 25a085a..b45087f 100644 --- a/README.md +++ b/README.md @@ -336,9 +336,9 @@ You may also want to -------------------- * View the [annotated version of the source](http://biril.github.io/mp3-parser/). -* Try out the [load remote](https://github.com/biril/mp3-parser/tree/0.2.7/example/load-remote), - [read file](https://github.com/biril/mp3-parser/tree/0.2.7/example/read-file) - & [cmd line parse](https://github.com/biril/mp3-parser/tree/0.2.7/example/cmd-line-parse) examples. +* Try out the [load remote](https://github.com/biril/mp3-parser/tree/0.3.0/example/load-remote), + [read file](https://github.com/biril/mp3-parser/tree/0.3.0/example/read-file) + & [cmd line parse](https://github.com/biril/mp3-parser/tree/0.3.0/example/cmd-line-parse) examples. * Take a look at [the project's wiki](https://github.com/biril/mp3-parser/wiki) which contains a list of currently (un)supported ID3v2 tag frames. @@ -356,7 +356,12 @@ housekeeping. Changelog --------- -#### Next — _Nov ??, 2016_ — [Diff](https://github.com/biril/mp3-parser/compare/0.2.7...master) +#### Next — [Diff](https://github.com/biril/mp3-parser/compare/0.3.0...master) + +TBD + + +#### 0.3.0 — _Nov 20, 2016_ — [Diff](https://github.com/biril/mp3-parser/compare/0.2.7...0.3.0) * Add support for ID3v2 CHAP frames (Thanks [markusahlstrand](https://github.com/markusahlstrand)). * Add support for MPEG v2 / layers I - III (Thanks [jdelStrother](https://github.com/jdelStrother)). diff --git a/example/cmd-line-parse/package.json b/example/cmd-line-parse/package.json index 872d9b9..ecac3c7 100644 --- a/example/cmd-line-parse/package.json +++ b/example/cmd-line-parse/package.json @@ -17,7 +17,7 @@ "author": "biril ", "private": true, "dependencies": { - "mp3-parser": "^0.2.6" + "mp3-parser": "^0.3.0" }, "engines": { "node": ">=4.0.0" diff --git a/example/load-remote/bower.json b/example/load-remote/bower.json index cc81a84..7cf7742 100644 --- a/example/load-remote/bower.json +++ b/example/load-remote/bower.json @@ -15,6 +15,6 @@ "requirejs": "^2.3.2", "underscore": "^1.8.3", "jquery": "^2.0.3", - "mp3-parser": "~0.2.7" + "mp3-parser": "~0.3.0" } } diff --git a/example/read-file/bower.json b/example/read-file/bower.json index 869a54e..49e88b8 100644 --- a/example/read-file/bower.json +++ b/example/read-file/bower.json @@ -14,6 +14,6 @@ "dependencies": { "underscore": "^1.8.3", "jquery": "^2.0.3", - "mp3-parser": "~0.2.7" + "mp3-parser": "~0.3.0" } } diff --git a/lib/id3v2.js b/lib/id3v2.js index d5017f5..c8fbee5 100644 --- a/lib/id3v2.js +++ b/lib/id3v2.js @@ -1,4 +1,4 @@ -// mp3-parser/id3v2 v0.2.7 +// mp3-parser/id3v2 v0.3.0 // https://github.com/biril/mp3-parser // Licensed and freely distributed under the MIT License diff --git a/lib/lib.js b/lib/lib.js index 4b18c9e..719843f 100644 --- a/lib/lib.js +++ b/lib/lib.js @@ -1,4 +1,4 @@ -// mp3-parser/lib v0.2.7 +// mp3-parser/lib v0.3.0 // https://github.com/biril/mp3-parser // Licensed and freely distributed under the MIT License diff --git a/lib/xing.js b/lib/xing.js index ef9a7d6..b127371 100644 --- a/lib/xing.js +++ b/lib/xing.js @@ -1,4 +1,4 @@ -// mp3-parser/xing v0.2.7 +// mp3-parser/xing v0.3.0 // https://github.com/biril/mp3-parser // Licensed and freely distributed under the MIT License diff --git a/main.js b/main.js index 3cd1885..7996667 100644 --- a/main.js +++ b/main.js @@ -1,4 +1,4 @@ -// mp3-parser v0.2.7 +// mp3-parser v0.3.0 // https://github.com/biril/mp3-parser // Licensed and freely distributed under the MIT License diff --git a/package.json b/package.json index c1c5489..9892d4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mp3-parser", - "version": "0.2.7", + "version": "0.3.0", "description": "Read MPEG audio frames & tags", "keywords": [ "mpeg",