initial
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import { v0_1_0 } from './v0.1.0'
|
||||
|
||||
export const versions = { 'v0.1.0:0': v0_1_0 }
|
||||
@@ -0,0 +1,18 @@
|
||||
// First version of the package. Migrations get added here as versions
|
||||
// increment. For v0.1.0 there's nothing to migrate because nothing exists
|
||||
// yet.
|
||||
|
||||
import { sdk } from '../sdk'
|
||||
|
||||
export const v0_1_0 = sdk.Version.of({
|
||||
version: '0.1.0:0',
|
||||
releaseNotes: `Initial release:\n` +
|
||||
`- Core licensing API: products, purchase, validate, revoke.\n` +
|
||||
`- BTCPay Server integration with HMAC-verified webhooks.\n` +
|
||||
`- Ed25519-signed license keys (offline-verifiable).\n` +
|
||||
`- Admin actions in StartOS UI.\n`,
|
||||
migrations: {
|
||||
up: async ({ effects }) => {},
|
||||
down: async ({ effects }) => {},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user