From 9d05762159cda154ff9e01a5b05a1e52755e5d5a Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 21:08:02 +0000 Subject: [PATCH] Prepare release v0.0.2 ## heroku/deb-packages ### Added - Support the `force` option when declaring a package to install so the user can control if, when the package is already on the system, it should be skipped or forcibly installed. ([#66](https://github.com/heroku/buildpacks-deb-packages/pull/66)) - Support for `BP_LOG_LEVEL` environment variable to control verbosity of buildpack output. ([#60](https://github.com/heroku/buildpacks-deb-packages/pull/60)) ### Changed - Updated the buildpack display name and keywords to be more consistent with our other CNBs. ([#59](https://github.com/heroku/buildpacks-deb-packages/pull/59)) - Modified the buildpack output format to align with our other CNBs. ([#60](https://github.com/heroku/buildpacks-deb-packages/pull/60)) --- CHANGELOG.md | 5 ++++- buildpack.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4ec2f7..09102bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2] - 2024-11-06 + ### Added - Support the `force` option when declaring a package to install so the user can control if, when the package is already @@ -27,5 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[unreleased]: https://github.com/heroku/buildpacks-deb-packages/compare/v0.0.1...HEAD +[unreleased]: https://github.com/heroku/buildpacks-deb-packages/compare/v0.0.2...HEAD +[0.0.2]: https://github.com/heroku/buildpacks-deb-packages/compare/v0.0.1...v0.0.2 [0.0.1]: https://github.com/heroku/buildpacks-deb-packages/releases/tag/v0.0.1 diff --git a/buildpack.toml b/buildpack.toml index 15b2c3a..e11e253 100644 --- a/buildpack.toml +++ b/buildpack.toml @@ -2,7 +2,7 @@ api = "0.10" [buildpack] id = "heroku/deb-packages" -version = "0.0.1" +version = "0.0.2" name = "Heroku .deb Packages" description = "Heroku's buildpack for installing .deb system packages." homepage = "https://github.com/heroku/buildpacks-deb-packages"