diff --git a/changelog.md b/changelog.md index b233601d..87ae1767 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,13 @@ +# 2.0.16 + +## Ext + +- Enabled needExtraData for Loom + +## Shared + +- Added support convert VTT subs with IDs + # 2.0.15 ## Ext diff --git a/package.json b/package.json index 32b8632a..1caa747e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vot.js", - "version": "2.0.15", + "version": "2.0.16", "author": "Toil", "repository": { "type": "git", diff --git a/packages/core/package.json b/packages/core/package.json index 9fb6f2b4..0e270f66 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@vot.js/core", "description": "core package", - "version": "2.0.15", + "version": "2.0.16", "author": "Toil", "license": "MIT", "repository": { diff --git a/packages/ext/package.json b/packages/ext/package.json index 0007dd0a..841f0b0b 100644 --- a/packages/ext/package.json +++ b/packages/ext/package.json @@ -1,7 +1,7 @@ { "name": "@vot.js/ext", "description": "package for web extensions", - "version": "2.0.15", + "version": "2.0.16", "author": "Toil", "license": "MIT", "repository": { diff --git a/packages/node/package.json b/packages/node/package.json index 46265351..74ab6545 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,7 +1,7 @@ { "name": "@vot.js/node", "description": "package for runtimes", - "version": "2.0.15", + "version": "2.0.16", "author": "Toil", "license": "MIT", "repository": { diff --git a/packages/shared/package.json b/packages/shared/package.json index 15ab36cc..8521c605 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,7 +1,7 @@ { "name": "@vot.js/shared", "description": "shared for all @vot.js package", - "version": "2.0.15", + "version": "2.0.16", "author": "Toil", "license": "MIT", "repository": { diff --git a/packages/shared/src/data/config.ts b/packages/shared/src/data/config.ts index cd2414cd..3cf51b1f 100644 --- a/packages/shared/src/data/config.ts +++ b/packages/shared/src/data/config.ts @@ -14,5 +14,5 @@ export default { defaultDuration: 343, minChunkSize: 5295308, loggerLevel: 1, - version: "2.0.15", + version: "2.0.16", } as ConfigSchema;