Browse Source

Add support for CNB platform API 0.11

See gh-34383
pull/34421/head
Chintan Radia 3 years ago committed by Moritz Halbritter
parent
commit
a98760125c
  1. 2
      spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/ApiVersions.java

2
spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/ApiVersions.java

@ -31,7 +31,7 @@ final class ApiVersions { @@ -31,7 +31,7 @@ final class ApiVersions {
/**
* The platform API versions supported by this release.
*/
static final ApiVersions SUPPORTED_PLATFORMS = ApiVersions.of(0, IntStream.rangeClosed(3, 10));
static final ApiVersions SUPPORTED_PLATFORMS = ApiVersions.of(0, IntStream.rangeClosed(3, 11));
private final ApiVersion[] apiVersions;

Loading…
Cancel
Save