Skip to content

Commit

Permalink
chore: up version [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
eidoriantan committed Jul 25, 2024
1 parent a969362 commit 87711a0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mp3tag.js",
"version": "3.10.0",
"version": "3.11.0",
"description": "MP3 tagging library written in pure JavaScript",
"keywords": [
"node",
Expand Down
2 changes: 1 addition & 1 deletion src/mp3tag.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class MP3Tag {
get name () { return 'MP3Tag' }
set name (value) { throw new Error('Unable to set this property') }

get version () { return '3.10.0' }
get version () { return '3.11.0' }
set version (value) { throw new Error('Unable to set this property') }

constructor (buffer, verbose = false) {
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export type MP3TagWriteOptions = Partial<MP3TagDefaultWriteOptions>;

export class MP3Tag {
readonly name = 'MP3Tag';
readonly version = '3.10.0';
readonly version = '3.11.0';

verbose: boolean;
buffer: MP3Buffer;
Expand Down

0 comments on commit 87711a0

Please sign in to comment.