Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add explicit support for heroku-* stacks #55

Merged
merged 4 commits into from
Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

## 1.0.1
- Added explicit support for heroku-* stacks.

## 1.0.0

- Initial release of Rust procfile buildpack, the old Go buildpack is now archived.
Expand Down
14 changes: 13 additions & 1 deletion buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = "0.6"

[buildpack]
id = "heroku/procfile"
version = "1.0.0"
version = "1.0.1"
name = "Procfile"
homepage = "https://github.com/heroku/procfile-cnb"
description = "Official Heroku buildpack for using Procfile."
Expand All @@ -11,5 +11,17 @@ keywords = ["procfile", "processes"]
[[stacks]]
id = "*"

# Explicit stack identifiers are required for `pack` versions `0.24.0`
# and older. `heroku-*` stack identifiers may be removed once the buildpack
# api is upgraded to something greater than "0.6".
[[stacks]]
joshwlewis marked this conversation as resolved.
Show resolved Hide resolved
id = "heroku-18"

[[stacks]]
id = "heroku-20"

[[stacks]]
id = "heroku-22"

[[buildpack.licenses]]
type = "BSD-3-Clause"