From b8cad80f669a5c764616a171432a7b8720288661 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Tue, 24 Oct 2023 10:21:16 +0000 Subject: [PATCH] Update buildpack metadata in buildpack.toml (#189) Adjusts the buildpack `name`, `description` and `keywords` in `buildpack.toml` to match the style discussed in: https://github.com/heroku/cnb-builder-images/issues/408 These fields are used by the CNB registry and can also be seen in the output of `pack builder inspect`. They are not used by `pack build` or Kodon. GUS-W-14121598. --- CHANGELOG.md | 4 ++++ buildpack.toml | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1960a1e..0443d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Updated buildpack display name, description and keywords. ([#189](https://github.com/heroku/procfile-cnb/pull/189)) + ## [2.0.1] - 2023-08-21 ### Changed diff --git a/buildpack.toml b/buildpack.toml index 6fb712f..a693246 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -3,16 +3,16 @@ api = "0.8" [buildpack] id = "heroku/procfile" version = "2.0.1" -name = "Procfile" +name = "Heroku Procfile" homepage = "https://github.com/heroku/procfile-cnb" -description = "Official Heroku buildpack for using Procfile." -keywords = ["procfile", "processes"] - -[[stacks]] -id = "*" +description = "Heroku's Procfile buildpack." +keywords = ["procfile", "processes", "heroku"] [[buildpack.licenses]] type = "BSD-3-Clause" +[[stacks]] +id = "*" + [metadata.release] image = { repository = "docker.io/heroku/procfile-cnb" }