From 83985c321a4372fa31311a6407ab1b78c9f69a64 Mon Sep 17 00:00:00 2001 From: Akshay Date: Fri, 10 Nov 2023 11:33:41 +0000 Subject: [PATCH 1/2] fix studio snapshot migration --- server/bleep/migrations/20230919100529_code_studio_docs.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/bleep/migrations/20230919100529_code_studio_docs.sql b/server/bleep/migrations/20230919100529_code_studio_docs.sql index 5a4cd4f774..dfe19dd7d3 100644 --- a/server/bleep/migrations/20230919100529_code_studio_docs.sql +++ b/server/bleep/migrations/20230919100529_code_studio_docs.sql @@ -10,4 +10,4 @@ CREATE TABLE docs ( modified_at DATETIME NOT NULL DEFAULT (datetime('now')) ); -ALTER TABLE studio_snapshots ADD COLUMN doc_context TEXT NOT NULL; +ALTER TABLE studio_snapshots ADD COLUMN doc_context TEXT NOT NULL DEFAULT '[]'; From 41778475ce242a1f3e3501029bc860bc1cc9e0b5 Mon Sep 17 00:00:00 2001 From: Akshay Date: Fri, 10 Nov 2023 12:02:03 +0000 Subject: [PATCH 2/2] update to v0.5.9 --- Cargo.lock | 4 ++-- apps/desktop/src-tauri/Cargo.toml | 2 +- apps/desktop/src-tauri/tauri.conf.json | 4 ++-- client/package.json | 4 ++-- server/bleep/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 37adffa5dc..7ab5747be7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "bleep" -version = "0.5.8" +version = "0.5.9" dependencies = [ "anyhow", "async-stream", @@ -605,7 +605,7 @@ dependencies = [ [[package]] name = "bloop" -version = "0.5.8" +version = "0.5.9" dependencies = [ "anyhow", "bleep", diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index c0e7d71fe6..0a22b75a29 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bloop" -version = "0.5.8" +version = "0.5.9" description = "Search code. Fast." authors = ["Bloop AI Developers"] license = "Apache-2.0" diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index 1de8f68cad..4d18e75f61 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "bloop", - "version": "0.5.8" + "version": "0.5.9" }, "tauri": { "allowlist": { @@ -103,4 +103,4 @@ } ] } -} \ No newline at end of file +} diff --git a/client/package.json b/client/package.json index d53ff1e530..8e518391b4 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "@bloop/client", "private": true, - "version": "0.5.8", + "version": "0.5.9", "scripts": { "dev": "vite", "build": "tsc && vite build", @@ -13,4 +13,4 @@ "test": "jest --collect-coverage --passWithNoTests", "chromatic": "npx chromatic --project-token=6115d726666b" } -} \ No newline at end of file +} diff --git a/server/bleep/Cargo.toml b/server/bleep/Cargo.toml index 78a7e0a715..84a5bc53da 100644 --- a/server/bleep/Cargo.toml +++ b/server/bleep/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bleep" -version = "0.5.8" +version = "0.5.9" edition = "2021" default-run = "bleep" build = "build.rs"