Skip to content

Commit

Permalink
Merge pull request #18 from BBai-Tips/staging
Browse files Browse the repository at this point in the history
Hotfix for bui
  • Loading branch information
cngarrison authored Sep 3, 2024
2 parents 7c7387a + 8ff4cd5 commit 1e68a41
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [0.0.10b-alpha] - 2024-09-03

### Changed

- Hotfix for bui


## [0.0.10a-alpha] - 2024-09-03

### Changed
Expand Down
2 changes: 1 addition & 1 deletion api/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-api",
"version": "0.0.10a-alpha",
"version": "0.0.10b-alpha",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-read --allow-write --allow-run --allow-net --allow-env src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion bui/src/islands/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default function Chat({ apiPort }: ChatProps) {
// Only set isWorking to false when we receive the final answer
setIsWorking(false);
} else if ('conversationTitle' in newEntry) {
wsManager.value?.isReady.value = true;
wsManager.value.isReady.value = true;
}
// Update current conversation metadata
if (currentConversation) {
Expand Down
2 changes: 1 addition & 1 deletion cli/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai-cli",
"version": "0.0.10a-alpha",
"version": "0.0.10b-alpha",
"exports": "./src/main.ts",
"tasks": {
"start": "deno run --allow-read --allow-write --allow-run --allow-net src/main.ts",
Expand Down
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbai",
"version": "0.0.10a-alpha",
"version": "0.0.10b-alpha",
"exports": "./cli/src/main.ts",
"tasks": {
"tool:check-types-project": "deno task -c ./cli/deno.jsonc check-types && deno task -c ./api/deno.jsonc check-types",
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = "0.0.10a-alpha";
export const VERSION = "0.0.10b-alpha";

0 comments on commit 1e68a41

Please sign in to comment.