From 38119ffbb04966a34bc7c7510eb61898385ff8a6 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sat, 13 Dec 2025 02:06:39 +0100 Subject: [PATCH] Add changelog entry for #173, document attribution format in AGENTS.md --- AGENTS.md | 7 +++++++ packages/coding-agent/CHANGELOG.md | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index 4bab1823..5d51be7e 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -51,6 +51,13 @@ When closing issues via commit: - Each version section is immutable once released - When releasing: rename `[Unreleased]` to the new version, then add a fresh empty `[Unreleased]` section +### Attribution format +- **Internal changes (from issues)**: Reference issue only + - Example: `Fixed foo bar ([#123](https://github.com/badlogic/pi-mono/issues/123))` +- **External contributions (PRs from others)**: Reference PR and credit the contributor + - Example: `Added feature X ([#456](https://github.com/badlogic/pi-mono/pull/456) by [@username](https://github.com/username))` +- If a PR addresses an issue, reference both: `([#123](...issues/123), [#456](...pull/456) by [@user](...))` or just the PR if the issue context is clear from the description + ## Releasing 1. **Bump version** (all packages use lockstep versioning): diff --git a/packages/coding-agent/CHANGELOG.md b/packages/coding-agent/CHANGELOG.md index 21378473..6d8e58a2 100644 --- a/packages/coding-agent/CHANGELOG.md +++ b/packages/coding-agent/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +### Fixed + +- Fixed double blank lines rendering after markdown code blocks ([#173](https://github.com/badlogic/pi-mono/pull/173) by [@markusylisiurunen](https://github.com/markusylisiurunen)) + ## [0.20.1] - 2025-12-13 ### Added