We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e6cd36 commit 9b86496Copy full SHA for 9b86496
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mp3tag.js",
3
- "version": "3.7.0",
+ "version": "3.7.1",
4
"description": "MP3 tagging library written in pure JavaScript",
5
"keywords": [
6
"node",
src/mp3tag.mjs
@@ -15,7 +15,7 @@ export default class MP3Tag {
15
}
16
17
this.name = 'MP3Tag'
18
- this.version = '3.7.0'
+ this.version = '3.7.1'
19
this.verbose = verbose
20
21
this.buffer = buffer
types/index.d.ts
@@ -28,7 +28,7 @@ export type MP3TagWriteOptions = Partial<MP3TagDefaultWriteOptions>;
28
29
export class MP3Tag {
30
readonly name: 'MP3Tag';
31
- readonly version: '3.7.0';
+ readonly version: '3.7.1';
32
33
verbose: boolean;
34
buffer: MP3Buffer;
0 commit comments