Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit b6a1eb3

Browse files
authored
fix studio snapshot migration (#1126)
* fix studio snapshot migration * update to v0.5.9
1 parent 14cde4d commit b6a1eb3

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/desktop/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bloop"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
description = "Search code. Fast."
55
authors = ["Bloop AI Developers"]
66
license = "Apache-2.0"

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "bloop",
11-
"version": "0.5.8"
11+
"version": "0.5.9"
1212
},
1313
"tauri": {
1414
"allowlist": {

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@bloop/client",
33
"private": true,
4-
"version": "0.5.8",
4+
"version": "0.5.9",
55
"scripts": {
66
"dev": "vite",
77
"build": "tsc && vite build",
@@ -13,4 +13,4 @@
1313
"test": "jest --collect-coverage --passWithNoTests",
1414
"chromatic": "npx chromatic --project-token=6115d726666b"
1515
}
16-
}
16+
}

server/bleep/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bleep"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
edition = "2021"
55
default-run = "bleep"
66
build = "build.rs"

server/bleep/migrations/20230919100529_code_studio_docs.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ CREATE TABLE docs (
1010

1111
modified_at DATETIME NOT NULL DEFAULT (datetime('now'))
1212
);
13-
ALTER TABLE studio_snapshots ADD COLUMN doc_context TEXT NOT NULL;
13+
ALTER TABLE studio_snapshots ADD COLUMN doc_context TEXT NOT NULL DEFAULT '[]';

0 commit comments

Comments
 (0)