Skip to content

Commit

Permalink
Update buildpack name/keywords (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley authored Oct 15, 2024
1 parent eff244f commit 002190d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### 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))

## [0.0.1] - 2024-10-10

* Initial release
### Added

- Initial release.

[unreleased]: https://github.com/heroku/buildpacks-deb-packages/compare/v0.0.1...HEAD
[0.0.1]: https://github.com/heroku/buildpacks-deb-packages/releases/tag/v0.0.1
4 changes: 2 additions & 2 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ api = "0.10"
[buildpack]
id = "heroku/deb-packages"
version = "0.0.1"
name = "Heroku .deb Packages Buildpack"
name = "Heroku .deb Packages"
description = "Heroku's buildpack for installing .deb system packages."
homepage = "https://github.com/heroku/buildpacks-deb-packages"
keywords = ["deb", "debian", "packages"]
keywords = ["deb", "debian", "packages", "apt", "heroku"]

[[buildpack.licenses]]
type = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fn test_failed_detection_when_project_file_has_no_config() {
#[allow(clippy::too_many_lines)]
fn test_general_usage_output() {
integration_test("fixtures/general_usage", |ctx| {
assert_contains_match!(ctx.pack_stdout, r"# Heroku .deb Packages Buildpack \(v\d+\.\d+\.\d+\)");
assert_contains_match!(ctx.pack_stdout, r"# Heroku .deb Packages \(v\d+\.\d+\.\d+\)");

match (get_integration_test_builder().as_str(), get_integration_test_arch().as_str()) {
("heroku/builder:22", "amd64") => {
Expand Down Expand Up @@ -224,7 +224,7 @@ fn test_general_usage_output_on_rebuild() {
integration_test("fixtures/general_usage", |ctx| {
let config = ctx.config.clone();
ctx.rebuild(config, |ctx| {
assert_contains_match!(ctx.pack_stdout, r"# Heroku .deb Packages Buildpack \(v\d+\.\d+\.\d+\)");
assert_contains_match!(ctx.pack_stdout, r"# Heroku .deb Packages \(v\d+\.\d+\.\d+\)");

match (get_integration_test_builder().as_str(), get_integration_test_arch().as_str()) {
("heroku/builder:22", "amd64") => {
Expand Down

0 comments on commit 002190d

Please sign in to comment.