From bc8609937dd220406b50f6878915618002e4570b Mon Sep 17 00:00:00 2001 From: Manuel Fuchs Date: Fri, 28 Apr 2023 13:44:12 +0200 Subject: [PATCH] Prepare 0.12.0 release (#568) --- CHANGELOG.md | 4 ++++ Cargo.toml | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f761dac3..4fcab1a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ separate changelogs for each crate were used. If you need to refer to these old ## [Unreleased] +## [0.12.0] 2023-04-28 + +Highlight of this release is the bump to [Buildpack API 0.9](https://github.com/buildpacks/spec/releases/tag/buildpack%2Fv0.9). This release contains breaking changes, please refer to the items below for migration advice. + ### Changed - libcnb.rs now targets [Buildpack API 0.9](https://github.com/buildpacks/spec/releases/tag/buildpack%2Fv0.9). Buildpacks need to upgrade the `api` key to `0.9` in their `buildpack.toml`. ([#567](https://github.com/heroku/libcnb.rs/pull/567)) diff --git a/Cargo.toml b/Cargo.toml index 837b0d7a..dfdc2720 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,15 +16,15 @@ members = [ ] [workspace.package] -version = "0.11.5" +version = "0.12.0" rust-version = "1.64" edition = "2021" license = "BSD-3-Clause" [workspace.dependencies] -libcnb = { version = "0.11.5", path = "libcnb" } -libcnb-data = { version = "0.11.5", path = "libcnb-data" } -libcnb-package = { version = "0.11.5", path = "libcnb-package" } -libcnb-proc-macros = { version = "0.11.5", path = "libcnb-proc-macros" } -libcnb-test = { version = "0.11.5", path = "libcnb-test" } +libcnb = { version = "0.12.0", path = "libcnb" } +libcnb-data = { version = "0.12.0", path = "libcnb-data" } +libcnb-package = { version = "0.12.0", path = "libcnb-package" } +libcnb-proc-macros = { version = "0.12.0", path = "libcnb-proc-macros" } +libcnb-test = { version = "0.12.0", path = "libcnb-test" } toml = { version = "0.7.1" }