Skip to content

Commit

Permalink
Bump minor revision -> v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
biril committed Nov 20, 2016
1 parent a8a41d1 commit 19761d0
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 12 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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)).
Expand Down
2 changes: 1 addition & 1 deletion example/cmd-line-parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"author": "biril <[email protected]>",
"private": true,
"dependencies": {
"mp3-parser": "^0.2.6"
"mp3-parser": "^0.3.0"
},
"engines": {
"node": ">=4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion example/load-remote/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion example/read-file/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"dependencies": {
"underscore": "^1.8.3",
"jquery": "^2.0.3",
"mp3-parser": "~0.2.7"
"mp3-parser": "~0.3.0"
}
}
2 changes: 1 addition & 1 deletion lib/id3v2.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/lib.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/xing.js
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -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
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": "mp3-parser",
"version": "0.2.7",
"version": "0.3.0",
"description": "Read MPEG audio frames & tags",
"keywords": [
"mpeg",
Expand Down

0 comments on commit 19761d0

Please sign in to comment.