Add changelog entry for #173, document attribution format in AGENTS.md

This commit is contained in:
Mario Zechner 2025-12-13 02:06:39 +01:00
parent db886746b4
commit 38119ffbb0
2 changed files with 11 additions and 0 deletions

View file

@ -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):

View file

@ -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