Skip to content

Commit 87711a0

Browse files
committed
chore: up version [skip ci]
1 parent a969362 commit 87711a0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mp3tag.js",
3-
"version": "3.10.0",
3+
"version": "3.11.0",
44
"description": "MP3 tagging library written in pure JavaScript",
55
"keywords": [
66
"node",

src/mp3tag.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class MP3Tag {
1313
get name () { return 'MP3Tag' }
1414
set name (value) { throw new Error('Unable to set this property') }
1515

16-
get version () { return '3.10.0' }
16+
get version () { return '3.11.0' }
1717
set version (value) { throw new Error('Unable to set this property') }
1818

1919
constructor (buffer, verbose = false) {

types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type MP3TagWriteOptions = Partial<MP3TagDefaultWriteOptions>;
3737

3838
export class MP3Tag {
3939
readonly name = 'MP3Tag';
40-
readonly version = '3.10.0';
40+
readonly version = '3.11.0';
4141

4242
verbose: boolean;
4343
buffer: MP3Buffer;

0 commit comments

Comments
 (0)