From b05fd61c5d6d17ff6359ebb862b23fac85771930 Mon Sep 17 00:00:00 2001 From: AlexAndrewsAI Date: Sun, 26 Jul 2026 23:56:21 +0000 Subject: [PATCH 1/3] rename to yaml --- .github/workflows/{ci.yml => ci.yaml} | 0 AGENTS.md | 2 ++ AGENTS_MANUAL_CHECKS.md | 2 ++ 3 files changed, 4 insertions(+) rename .github/workflows/{ci.yml => ci.yaml} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/AGENTS.md b/AGENTS.md index 6927705..d6d6eae 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -80,6 +80,8 @@ pyproject.toml (Dependencies & tool config) `pyproject.toml`, structure, or core logic changes. - **Pre-commit Config:** Keep `.pre-commit-config.yaml` in sync with CI workflow when test requirements change. +- **YAML Files:** Use `.yaml` extension for all YAML files + (e.g., `.github/workflows/ci.yaml` instead of `.yml`). ## Workflow Commands diff --git a/AGENTS_MANUAL_CHECKS.md b/AGENTS_MANUAL_CHECKS.md index aff7c5c..9034417 100644 --- a/AGENTS_MANUAL_CHECKS.md +++ b/AGENTS_MANUAL_CHECKS.md @@ -78,6 +78,8 @@ pyproject.toml (Dependencies & tool config) - **Keep Instructions Current:** Update "Tech Stack," "Project Structure," and "Workflow Commands" if `pyproject.toml`, structure, or core logic changes. +- **YAML Files:** Use `.yaml` extension for all YAML files + (e.g., `.github/workflows/ci.yaml` instead of `.yml`). ## Workflow Commands From d7ab3c7375423e63ba0bd4eac066e95899a84343 Mon Sep 17 00:00:00 2001 From: AlexAndrewsAI Date: Sun, 26 Jul 2026 22:13:58 -0400 Subject: [PATCH 2/3] changelog, finish review --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1bdcc6..abf5591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [0.1.2] - 2026-07-27 - #12 "Standardize to .yaml" + +### Changed + +- Renamed CI workflow from `.yml` to `.yaml` for + consistent YAML extension usage. + ## [0.1.1] - 2026-07-10 - #11 "Add python prek hooks for git pre-commit" ### Added diff --git a/pyproject.toml b/pyproject.toml index d815bc1..55fa3bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-package-template" -version = "0.1.1" +version = "0.1.2" description = "A simple package using pydantic" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 2a5fff2..1414326 100644 --- a/uv.lock +++ b/uv.lock @@ -1203,7 +1203,7 @@ wheels = [ [[package]] name = "python-package-template" -version = "0.1.1" +version = "0.1.2" source = { editable = "." } dependencies = [ { name = "pydantic" }, From 33d0f8b698749899283120a7f6a709a721751bb8 Mon Sep 17 00:00:00 2001 From: AlexAndrewsAI Date: Sun, 26 Jul 2026 22:16:20 -0400 Subject: [PATCH 3/3] formatting --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abf5591..05cc845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ The format is based on ### Changed - Renamed CI workflow from `.yml` to `.yaml` for - consistent YAML extension usage. +- consistent YAML extension usage. ## [0.1.1] - 2026-07-10 - #11 "Add python prek hooks for git pre-commit"