From 4c53bd00da5dbc1cabbef5daf35513390e4cc514 Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Thu, 2 May 2024 16:04:19 -0500 Subject: [PATCH 1/4] Update changelog for multiarch --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9ff17d..783e09d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Support for `arm64` and multi-arch images. + ## [3.0.1] - 2024-03-13 ### Changed From 8676d38a323f32000a8de0debd9959ac74423afb Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Thu, 2 May 2024 16:06:22 -0500 Subject: [PATCH 2/4] Update changelog PR link --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 783e09d..fb9b0a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- Support for `arm64` and multi-arch images. +- Support for `arm64` and multi-arch images. ([#225](https://github.com/heroku/buildpacks-procfile/pull/225)) ## [3.0.1] - 2024-03-13 From a3ddea5d325a23d0327bc66becea73ae48a96b8b Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Thu, 2 May 2024 16:07:54 -0500 Subject: [PATCH 3/4] Use clippy pendantic priority --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d1cd703..2755f73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ unused_crate_dependencies = "warn" [lints.clippy] panic_in_result_fn = "warn" -pedantic = "warn" +pedantic = { level = "warn", priority = -1 } unwrap_used = "warn" [dependencies] From 4b9c914229d86c300f5dde5b561482d39d6f526f Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Thu, 2 May 2024 16:20:00 -0500 Subject: [PATCH 4/4] Use changelog header Co-authored-by: Ed Morley <501702+edmorley@users.noreply.github.com> --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb9b0a0..ead24cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + - Support for `arm64` and multi-arch images. ([#225](https://github.com/heroku/buildpacks-procfile/pull/225)) ## [3.0.1] - 2024-03-13