Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8f39d98

Browse files
committed
release: v0.8.0
1 parent bd0b490 commit 8f39d98

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Changelog
22

3-
## 0.7.3 - Unreleased
3+
## 0.8.0 - 2026-05-15
44

55
### Changes
66

77
- Added attachment media caching with `discrawl attachments`, `attachments fetch`, `sync --with-media`, and Git snapshot backup/restore for cached non-DM media files.
88
- Documented media backup flow, including CDN fetch failures, local cache behavior, and Git snapshot publishing.
99
- Docker: add a local image with `/data` persistence and CI smoke coverage.
10+
- Moved stable store SQL for sync state, messages, attachments, embedding jobs, members, and status reads/writes to sqlc-generated typed wrappers while leaving dynamic FTS, semantic search, report, share, and user SQL handwritten.
1011

1112
### Fixes
1213

internal/cli/cli_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestHelpAndVersion(t *testing.T) {
4040

4141
out.Reset()
4242
require.NoError(t, Run(context.Background(), []string{"--version"}, &out, &bytes.Buffer{}))
43-
require.Contains(t, out.String(), "0.7.1")
43+
require.Contains(t, out.String(), "0.8.0")
4444

4545
err := Run(context.Background(), []string{"bogus"}, &out, &bytes.Buffer{})
4646
require.Equal(t, 2, ExitCode(err))

internal/cli/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package cli
22

3-
var version = "0.7.1"
3+
var version = "0.8.0"

0 commit comments

Comments
 (0)