Skip to content

Commit

Permalink
Enforce 0.6+ API
Browse files Browse the repository at this point in the history
Main is already 0.6+ only. This change makes it official.
  • Loading branch information
schneems committed Oct 21, 2021
1 parent f72b75d commit 2e1ead5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
- Stack id in `buildpack.toml` can now be `*` indicating "any" stack
- LayerContentMetadata values (build, cache, launch) are now under a "types" key
- Allow ProcessType to contain a dot (`.`) character
- libcnb now targets spec version 0.6 <https://github.com/Malax/libcnb.rs/milestone/2>

## [0.3.0] 2021/09/17
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ mod platform;
mod runtime;
mod toml_file;

const LIBCNB_SUPPORTED_BUILDPACK_API: BuildpackApi = BuildpackApi { major: 0, minor: 5 };
const LIBCNB_SUPPORTED_BUILDPACK_API: BuildpackApi = BuildpackApi { major: 0, minor: 6 };

0 comments on commit 2e1ead5

Please sign in to comment.