Skip to content

Commit bf815a7

Browse files
committed
release: v0.4.0
1 parent 8282f4d commit bf815a7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## 0.4.0 - Unreleased
5+
## 0.4.0 - 2026-04-22
66

77
### Changes
88

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.4.0-unreleased")
36+
require.Contains(t, out.String(), "0.4.0")
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.4.0-unreleased"
3+
var version = "0.4.0"

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.4.0-unreleased"
70+
"$discrawl" --version | grep -q "0.4.0"
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)