From aa517d11561caa001e8db60e000372e077da6952 Mon Sep 17 00:00:00 2001 From: Andrew Polk Date: Mon, 24 Aug 2026 15:17:42 -0700 Subject: [PATCH] Add agent notes documenting the +semver commit-message convention AGENTS.md (imported by CLAUDE.md) explains that GitVersion takes its version increment from +semver:major/minor/patch prefixes on commit subjects, and how to choose the level. Co-Authored-By: Claude Fable 5 --- AGENTS.md | 9 +++++++++ CLAUDE.md | 1 + 2 files changed, 10 insertions(+) create mode 100644 AGENTS.md create mode 100644 CLAUDE.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..e941bba --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,9 @@ +# Agent notes for L10nSharp + +## Versioning + +This repo versions with GitVersion, following [SemVer](https://semver.org/). Patch is the +default increment and needs no marker. A commit that adds a backward-compatible feature +must include `+semver:minor` in its commit message, and a breaking change `+semver:major` +(no space after the colon; anywhere in the message). When squashing a branch, make sure +the surviving commit keeps the marker. diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..43c994c --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1 @@ +@AGENTS.md