Skip to content

Commit 69f7671

Browse files
committed
release: v0.5.1
1 parent b86490a commit 69f7671

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to `discrawl` will be documented in this file.
44

5+
## 0.5.1 - 2026-04-24
6+
7+
### Fixes
8+
9+
- Git snapshot export/import now keeps wiretap DMs strictly local: `@me` rows, wiretap sync state, and DM vectors are excluded from published snapshots while existing local DM rows are preserved on import.
10+
- Publishing without `--with-embeddings` now omits old embedding manifests instead of carrying forward a stale vector bundle.
11+
512
## 0.5.0 - 2026-04-24
613

714
### Changes

internal/cli/cli_test.go

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

3434
out.Reset()
3535
require.NoError(t, Run(context.Background(), []string{"--version"}, &out, &bytes.Buffer{}))
36-
require.Contains(t, out.String(), "0.5.0")
36+
require.Contains(t, out.String(), "0.5.1")
3737

3838
err := Run(context.Background(), []string{"bogus"}, &out, &bytes.Buffer{})
3939
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.5.0"
3+
var version = "0.5.1"

scripts/docker-git-source-smoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ docker run --rm \
6767
cd /src
6868
go install ./cmd/discrawl
6969
discrawl=/work/bin/discrawl
70-
"$discrawl" --version | grep -q "0.5.0"
70+
"$discrawl" --version | grep -q "0.5.1"
7171
"$discrawl" --config /work/config.toml subscribe --repo /work/share --with-embeddings file:///backup > /work/subscribe.out
7272
grep -q "embeddings=\\[" /work/subscribe.out
7373
"$discrawl" --config /work/config.toml --plain sql "select provider, model, count(*) as total from message_embeddings group by provider, model" | tee /work/embeddings.out

0 commit comments

Comments
 (0)