From b93c20f28c11c0d1ab0f77931f3d10bf1946b481 Mon Sep 17 00:00:00 2001 From: Natalie Arellano Date: Thu, 28 Mar 2024 09:50:24 -0400 Subject: [PATCH] Buildpack API 0.11 is supported as of lifecycle 0.19 Fixes https://github.com/buildpacks/lifecycle/issues/1322 Signed-off-by: Natalie Arellano --- api/apis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/apis.go b/api/apis.go index 67be3702e..e46a04700 100644 --- a/api/apis.go +++ b/api/apis.go @@ -15,7 +15,7 @@ var ( // Buildpack is a pair of lists of Buildpack API versions: // 1. All supported versions (including deprecated versions) // 2. The versions that are deprecated - Buildpack = newApisMustParse([]string{"0.7", "0.8", "0.9", "0.10"}, []string{}) + Buildpack = newApisMustParse([]string{"0.7", "0.8", "0.9", "0.10", "0.11"}, []string{}) ) type APIs struct {