Skip to content

Commit 19761d0

Browse files
committed
Bump minor revision -> v3.0.0
1 parent a8a41d1 commit 19761d0

9 files changed

Lines changed: 17 additions & 12 deletions

File tree

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,9 @@ You may also want to
336336
--------------------
337337
338338
* View the [annotated version of the source](http://biril.github.io/mp3-parser/).
339-
* Try out the [load remote](https://github.com/biril/mp3-parser/tree/0.2.7/example/load-remote),
340-
[read file](https://github.com/biril/mp3-parser/tree/0.2.7/example/read-file)
341-
& [cmd line parse](https://github.com/biril/mp3-parser/tree/0.2.7/example/cmd-line-parse) examples.
339+
* Try out the [load remote](https://github.com/biril/mp3-parser/tree/0.3.0/example/load-remote),
340+
[read file](https://github.com/biril/mp3-parser/tree/0.3.0/example/read-file)
341+
& [cmd line parse](https://github.com/biril/mp3-parser/tree/0.3.0/example/cmd-line-parse) examples.
342342
* Take a look at [the project's wiki](https://github.com/biril/mp3-parser/wiki) which contains a
343343
list of currently (un)supported ID3v2 tag frames.
344344

@@ -356,7 +356,12 @@ housekeeping.
356356
Changelog
357357
---------
358358

359-
#### Next — _Nov ??, 2016_ — [Diff](https://github.com/biril/mp3-parser/compare/0.2.7...master)
359+
#### Next — [Diff](https://github.com/biril/mp3-parser/compare/0.3.0...master)
360+
361+
TBD
362+
363+
364+
#### 0.3.0 — _Nov 20, 2016_ — [Diff](https://github.com/biril/mp3-parser/compare/0.2.7...0.3.0)
360365

361366
* Add support for ID3v2 CHAP frames (Thanks [markusahlstrand](https://github.com/markusahlstrand)).
362367
* Add support for MPEG v2 / layers I - III (Thanks [jdelStrother](https://github.com/jdelStrother)).

example/cmd-line-parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"author": "biril <alexlambiris@gmail.com>",
1818
"private": true,
1919
"dependencies": {
20-
"mp3-parser": "^0.2.6"
20+
"mp3-parser": "^0.3.0"
2121
},
2222
"engines": {
2323
"node": ">=4.0.0"

example/load-remote/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"requirejs": "^2.3.2",
1616
"underscore": "^1.8.3",
1717
"jquery": "^2.0.3",
18-
"mp3-parser": "~0.2.7"
18+
"mp3-parser": "~0.3.0"
1919
}
2020
}

example/read-file/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"dependencies": {
1515
"underscore": "^1.8.3",
1616
"jquery": "^2.0.3",
17-
"mp3-parser": "~0.2.7"
17+
"mp3-parser": "~0.3.0"
1818
}
1919
}

lib/id3v2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mp3-parser/id3v2 v0.2.7
1+
// mp3-parser/id3v2 v0.3.0
22

33
// https://github.com/biril/mp3-parser
44
// Licensed and freely distributed under the MIT License

lib/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mp3-parser/lib v0.2.7
1+
// mp3-parser/lib v0.3.0
22

33
// https://github.com/biril/mp3-parser
44
// Licensed and freely distributed under the MIT License

lib/xing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mp3-parser/xing v0.2.7
1+
// mp3-parser/xing v0.3.0
22

33
// https://github.com/biril/mp3-parser
44
// Licensed and freely distributed under the MIT License

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// mp3-parser v0.2.7
1+
// mp3-parser v0.3.0
22

33
// https://github.com/biril/mp3-parser
44
// Licensed and freely distributed under the MIT License

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mp3-parser",
3-
"version": "0.2.7",
3+
"version": "0.3.0",
44
"description": "Read MPEG audio frames & tags",
55
"keywords": [
66
"mpeg",

0 commit comments

Comments
 (0)