Skip to content

Commit e10ce32

Browse files
authored
refactor(intelligence) Bump version to 0.2.0 (#5052)
1 parent a9a8334 commit e10ce32

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

intelligence/ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"url": "git+https://github.com/adap/flower.git"
1919
},
2020
"author": "The Flower Authors <hello@flower.ai>",
21-
"version": "0.1.3",
21+
"version": "0.2.0",
2222
"type": "module",
2323
"main": "./dist/flowerintelligence.cjs.js",
2424
"module": "./dist/flowerintelligence.es.js",

intelligence/ts/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
export const DEFAULT_MODEL = 'meta/llama3.2-1b/instruct-fp16';
1717
export const REMOTE_URL = 'https://api.flower.ai';
18-
export const VERSION = '0.1.3';
18+
export const VERSION = '0.2.0';
1919
export const SDK = 'TS';

intelligence/ts/src/flowerintelligence.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { vi } from 'vitest';
1818
vi.mock('./constants', () => ({
1919
DEFAULT_MODEL: 'meta/llama3.2-1b/instruct-fp16',
2020
REMOTE_URL: process.env.FI_DEV_REMOTE_URL,
21-
VERSION: '0.1.3',
21+
VERSION: '0.2.0',
2222
SDK: 'TS',
2323
}));
2424

0 commit comments

Comments
 (0)