From 738d86c38e0d46dd656c03c9c07ba4399e28d63e Mon Sep 17 00:00:00 2001 From: Martin Catty Date: Sat, 23 May 2026 16:29:54 -0400 Subject: [PATCH] chore: release 0.1.0 changelog Freeze [0.1.0] section and clear [Unreleased] before semver tag. --- CHANGELOG.md | 7 ++----- go.mod | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2cfc40..2fb5524 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,17 +9,14 @@ Tag naming: `0.y.z` (no `v` prefix). Align `cmd/version.go` with the tag before ## [Unreleased] -### Changed - -- Repository sync uses **go-git** instead of the `git` CLI (no `git` binary required in the distroless image). - ## [0.1.0] - 2026-05-23 ### Added - **probe-core** integration: entity-based lifecycle (`users`, `groups`, `projects`, `repositories`, `code_files`), HTTP control plane (`/probes`), `runtime_config` merge, schema in image. - CI/CD via `fluid-pub/actions` (test, release on semver tag, GHCR image `ghcr.io/fluid-pub/probe-gitlab`). -- Git repository sync and `code_files` indexing for RAG. +- Git repository sync via **go-git** and `code_files` indexing for RAG (no `git` CLI in the distroless image). +- `gofmt` pre-commit hook (`scripts/install-git-hooks.sh`). ### Changed diff --git a/go.mod b/go.mod index bda7a21..bb47dd1 100644 --- a/go.mod +++ b/go.mod @@ -32,4 +32,4 @@ require ( gopkg.in/warnings.v0 v0.1.2 // indirect ) -replace fluid/probes/core => ../core +replace fluid/probes/core => ./core