Skip to content

Commit

Permalink
this was a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
cngarrison committed Sep 8, 2024
1 parent 3c479b3 commit 2ef97f3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 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.12b-beta] - 2024-09-08

### Changed

- Hotfix-2 for over-ambitious api client


## [0.0.12a-beta] - 2024-09-08

### 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.12a-beta",
"version": "0.0.12b-beta",
"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/deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
"src/fixtures/**/*.ts"
]
},
"version": "0.0.12a-beta"
"version": "0.0.12b-beta"
}
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.12a-beta",
"version": "0.0.12b-beta",
"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 cli/src/utils/terminalHandler.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export class TerminalHandler {
}

try {
const formatterResponse = await apiClient.post(`/api/v1/format_log_entry/console/${logEntry.entryType}`, {
const formatterResponse = await this.apiClient.post(`/api/v1/format_log_entry/console/${logEntry.entryType}`, {
...logEntry,
});

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.12a-beta",
"version": "0.0.12b-beta",
"exports": "./cli/src/main.ts",
"tasks": {
"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",
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.12a-beta";
export const VERSION = "0.0.12b-beta";

0 comments on commit 2ef97f3

Please sign in to comment.