chore: bump discrawl to 0.6.5

This commit is contained in:
Peter Steinberger 2026-05-03 15:36:02 +01:00
parent dc72ac200e
commit 86502b251c
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
All notable changes to `discrawl` will be documented in this file.
## 0.6.5 - Unreleased
## 0.6.5 - 2026-05-03
### Fixes

View File

@ -34,7 +34,7 @@ func TestHelpAndVersion(t *testing.T) {
out.Reset()
require.NoError(t, Run(context.Background(), []string{"--version"}, &out, &bytes.Buffer{}))
require.Contains(t, out.String(), "0.6.4")
require.Contains(t, out.String(), "0.6.5")
err := Run(context.Background(), []string{"bogus"}, &out, &bytes.Buffer{})
require.Equal(t, 2, ExitCode(err))

View File

@ -1,3 +1,3 @@
package cli
var version = "0.6.4"
var version = "0.6.5"

View File

@ -67,7 +67,7 @@ docker run --rm \
cd /src
go install ./cmd/discrawl
discrawl=/work/bin/discrawl
"$discrawl" --version | grep -q "0.6.4"
"$discrawl" --version | grep -q "0.6.5"
"$discrawl" --config /work/config.toml subscribe --repo /work/share --with-embeddings file:///backup > /work/subscribe.out
grep -q "embeddings=\\[" /work/subscribe.out
"$discrawl" --config /work/config.toml --plain sql "select provider, model, count(*) as total from message_embeddings group by provider, model" | tee /work/embeddings.out