Skip to content

Commit 2506d87

Browse files
committed
version bump
1 parent c08e9dc commit 2506d87

File tree

6 files changed

+44
-14
lines changed

6 files changed

+44
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
11+
12+
## [0.0.26-beta] - 2024-10-14
13+
14+
### Changed
15+
1016
- normalized tool results and responses - better feedback to LLM and clearer output in conversation
1117
- New LLM tool: `conversation_metrics` for calculating the current turn and token counts,
1218
needed for the upcoming `conversation_summary` (& truncation) tool

api/deno.jsonc

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bbai-api",
3-
"version": "0.0.25-beta",
3+
"version": "0.0.26-beta",
44
"exports": "./src/main.ts",
55
"tasks": {
66
"start": "deno run --allow-read --allow-write --allow-run --allow-net --allow-env src/main.ts",
@@ -16,23 +16,36 @@
1616
"update-deps": "deno cache src/main.ts && deno cache tests/deps.ts"
1717
},
1818
"importMap": "../import_map.json",
19-
"unstable": ["kv"],
19+
"unstable": [
20+
"kv"
21+
],
2022
"fmt": {
2123
"useTabs": true,
2224
"lineWidth": 120,
2325
"indentWidth": 4,
2426
"semiColons": true,
2527
"singleQuote": true,
2628
"proseWrap": "preserve",
27-
"include": ["src/", "tests/"],
28-
"exclude": ["src/testdata/", "src/fixtures/**/*.ts"]
29+
"include": [
30+
"src/",
31+
"tests/"
32+
],
33+
"exclude": [
34+
"src/testdata/",
35+
"src/fixtures/**/*.ts"
36+
]
2937
},
3038
"lint": {
3139
"files": {
32-
"include": ["tests/pipelineProvider.js"]
40+
"include": [
41+
"tests/pipelineProvider.js"
42+
]
3343
},
3444
"rules": {
35-
"exclude": ["require-await", "no-var"]
45+
"exclude": [
46+
"require-await",
47+
"no-var"
48+
]
3649
}
3750
}
3851
}

bui/deno.jsonc

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@
1616
},
1717
"lint": {
1818
"rules": {
19-
"tags": ["fresh", "recommended"]
19+
"tags": [
20+
"fresh",
21+
"recommended"
22+
]
2023
}
2124
},
22-
"exclude": ["**/src/_fresh/*"],
25+
"exclude": [
26+
"**/src/_fresh/*"
27+
],
2328
"importMap": "../import_map.json",
2429
"compilerOptions": {
2530
"jsx": "react-jsx",
@@ -32,8 +37,14 @@
3237
"semiColons": true,
3338
"singleQuote": true,
3439
"proseWrap": "preserve",
35-
"include": ["src/", "tests/"],
36-
"exclude": ["src/testdata/", "src/fixtures/**/*.ts"]
40+
"include": [
41+
"src/",
42+
"tests/"
43+
],
44+
"exclude": [
45+
"src/testdata/",
46+
"src/fixtures/**/*.ts"
47+
]
3748
},
38-
"version": "0.0.25-beta"
49+
"version": "0.0.26-beta"
3950
}

cli/deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bbai-cli",
3-
"version": "0.0.25-beta",
3+
"version": "0.0.26-beta",
44
"exports": "./src/main.ts",
55
"tasks": {
66
"start": "deno run --allow-env --allow-read --allow-write --allow-run --allow-net src/main.ts",

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bbai",
3-
"version": "0.0.25-beta",
3+
"version": "0.0.26-beta",
44
"exports": "./cli/src/main.ts",
55
"tasks": {
66
"tool:check-types-project": "deno task -c ./cli/deno.jsonc check-types && deno task -c ./bui/deno.jsonc check-types && deno task -c ./api/deno.jsonc check-types",

version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "0.0.25-beta";
1+
export const VERSION = "0.0.26-beta";

0 commit comments

Comments
 (0)