Bump version to 0.1.16

Release notes:
  Add free mode for unlicensed users (one video at a time, no library).
  Online license revocation check via Keysat /v1/validate.
  Fix blank-screen bug after processing long videos.
  Ship deploy-script polish (no double-bump prompt).
This commit is contained in:
Keysat
2026-05-08 11:34:28 -05:00
parent 1e030a24c6
commit 8d9b384e32
2 changed files with 15 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_16 = VersionInfo.of({
version: '0.1.16:0',
releaseNotes: {
en_US: 'Add free mode for unlicensed users (one video at a time, no library). Online license revocation check via Keysat /v1/validate. Fix blank-screen bug after processing long videos. Ship deploy-script polish (no double-bump prompt).',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})