diff --git a/api-v3/src/version.ts b/api-v3/src/version.ts index d33ca8d..99bb064 100644 --- a/api-v3/src/version.ts +++ b/api-v3/src/version.ts @@ -1,2 +1,2 @@ export const API_VERSION = '0.25.0-1'; -export const API_PHASE = 'F3.2'; +export const API_PHASE = 'F4'; diff --git a/api-v3/test/unit/f4-health-metadata.test.ts b/api-v3/test/unit/f4-health-metadata.test.ts new file mode 100644 index 0000000..87e01f5 --- /dev/null +++ b/api-v3/test/unit/f4-health-metadata.test.ts @@ -0,0 +1,8 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; +import { API_PHASE, API_VERSION } from '../../src/version'; + +test('F4 health metadata reports the deployed phase without changing the release version', () => { + assert.equal(API_PHASE, 'F4'); + assert.equal(API_VERSION, '0.25.0-1'); +});