From 0bcb233caa85b1e782dca6dac6d11fc63023cc3d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Sep 2026 15:17:12 +0000 Subject: [PATCH] chore(main): release 0.6.0 --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- pyproject.toml | 2 +- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d65314a..086cdf6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -27,7 +27,7 @@ body: label: contrail version description: Output of `contrail --version`. # x-release-please-start-version - placeholder: contrail 0.5.1 + placeholder: contrail 0.6.0 # x-release-please-end validations: required: true @@ -85,7 +85,7 @@ body: attributes: label: How contrail is installed # x-release-please-start-version - placeholder: pip install contrails==0.5.1 + placeholder: pip install contrails==0.6.0 # x-release-please-end validations: required: true diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 210d290..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 995d973..aae3ddc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.6.0](https://github.com/atdr/contrail/compare/v0.5.1...v0.6.0) (2026-09-12) + + +### Features + +* support Python 3.14 ([#64](https://github.com/atdr/contrail/issues/64)) ([60178c4](https://github.com/atdr/contrail/commit/60178c4a5630c47066343bb5a7d351379c60802d)) + + +### Documentation + +* **contrail-gh:** document surface-diff tripwire and version tagging ([#52](https://github.com/atdr/contrail/issues/52)) ([c28f7ff](https://github.com/atdr/contrail/commit/c28f7ffda099be35b56ae34f178f4d2845700d30)) +* correct how release-please decides a version bump ([#58](https://github.com/atdr/contrail/issues/58)) ([b2893bf](https://github.com/atdr/contrail/commit/b2893bf1a8b56298a3c34c50e9b1214f6e6563e3)) + ## [0.5.1](https://github.com/atdr/contrail/compare/v0.5.0...v0.5.1) (2026-09-07) diff --git a/README.md b/README.md index f31ef52..23b2536 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ prices each one using Google's [Travel Impact Model](https://travelimpactmodel.o ```bash -pip install contrails==0.5.1 +pip install contrails==0.6.0 ``` @@ -447,7 +447,7 @@ secrets, and it syncs daily and commits the updated CSV back to your own repo. ```bash python3 -m venv ~/contrail-venv -~/contrail-venv/bin/pip install contrails==0.5.1 +~/contrail-venv/bin/pip install contrails==0.6.0 crontab -e ``` diff --git a/pyproject.toml b/pyproject.toml index 792a9f6..f1825e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "contrails" -version = "0.5.1" +version = "0.6.0" description = "Estimate the CO2e emissions of flights you've taken or booked, and keep a running log." readme = "README.md" requires-python = ">=3.11"