From db8b4e1bd362fc927c6bf0e7cfb1e11130d1e855 Mon Sep 17 00:00:00 2001 From: Pulkit Kathuria Date: Wed, 26 Jun 2024 14:21:32 +0900 Subject: [PATCH] (fix) use CGO_ENABLED=1 for sqlite3 --- .goreleaser.yaml | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 55d5c66..71be022 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -5,7 +5,7 @@ builds: - main: main.go env: - - CGO_ENABLED=0 + - CGO_ENABLED=1 goos: - linux - darwin diff --git a/README.md b/README.md index 14047ea..9464c69 100644 --- a/README.md +++ b/README.md @@ -94,4 +94,5 @@ BenchmarkLogRotation-10 9712 143824 ns/op 9707 B/op - v1.0.0: Initial release - v2.0.0: Fixed log rotation issue and tail issues - v2.0.11: Fixed invalid db issue on race, and use bytes instead of strings +- v2.0.13: buntdb -> sqlite3