Skip to content

Commit

Permalink
Fix file includes (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
Malax authored Sep 29, 2022
1 parent 39512d1 commit 3e7fb83
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ separate changelogs for each crate were used. If you need to refer to these old

## [Unreleased]

### Fixed

- All crates now properly include the `LICENSE` file. ([#506](https://github.com/heroku/libcnb.rs/pull/506))
- Fix `libcnb` readme file metadata which prevented vendoring `libcnb` via `cargo vendor`. ([#506](https://github.com/heroku/libcnb.rs/pull/506))

### Changed

- Improve the `libherokubuildpack` root module rustdocs. ([#503](https://github.com/heroku/libcnb.rs/pull/503))
Expand Down
2 changes: 1 addition & 1 deletion libcnb-cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs/tree/main/libcnb-cargo"
documentation = "https://github.com/heroku/libcnb.rs/blob/main/libcnb-cargo/README.md"
readme = "README.md"
include = ["src/**/*", "../LICENSE", "README.md"]
include = ["src/**/*", "LICENSE", "README.md"]

[[bin]]
name = "cargo-libcnb"
Expand Down
1 change: 1 addition & 0 deletions libcnb-cargo/LICENSE
2 changes: 1 addition & 1 deletion libcnb-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs/tree/main/libcnb-data"
documentation = "https://docs.rs/libcnb-data"
readme = "README.md"
include = ["src/**/*", "../LICENSE", "README.md"]
include = ["src/**/*", "LICENSE", "README.md"]

[dependencies]
fancy-regex = { version = "0.10.0", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions libcnb-data/LICENSE
2 changes: 1 addition & 1 deletion libcnb-package/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs/tree/main/libcnb-package"
documentation = "https://docs.rs/libcnb-package"
readme = "README.md"
include = ["src/**/*", "../LICENSE", "README.md"]
include = ["src/**/*", "LICENSE", "README.md"]

[dependencies]
cargo_metadata = "0.15.0"
Expand Down
1 change: 1 addition & 0 deletions libcnb-package/LICENSE
2 changes: 1 addition & 1 deletion libcnb-proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "Procedural macros used within libcnb.rs"
repository = "https://github.com/heroku/libcnb.rs/tree/main/libcnb-proc-macros"
documentation = "https://docs.rs/libcnb-proc-macros"
readme = "README.md"
include = ["src/**/*", "../LICENSE", "README.md"]
include = ["src/**/*", "LICENSE", "README.md"]

[lib]
proc-macro = true
Expand Down
1 change: 1 addition & 0 deletions libcnb-proc-macros/LICENSE
2 changes: 1 addition & 1 deletion libcnb-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs/tree/main/libcnb-test"
documentation = "https://docs.rs/libcnb-test"
readme = "README.md"
include = ["src/**/*", "../LICENSE", "README.md"]
include = ["src/**/*", "LICENSE", "README.md"]

[dependencies]
bollard = "0.13.0"
Expand Down
1 change: 1 addition & 0 deletions libcnb-test/LICENSE
4 changes: 2 additions & 2 deletions libcnb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description = "A framework for writing Cloud Native Buildpacks in Rust"
keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs"
documentation = "https://docs.rs/libcnb"
readme = "../README.md"
include = ["src/**/*", "../LICENSE", "../README.md"]
readme = "README.md"
include = ["src/**/*", "LICENSE", "README.md"]

[dependencies]
anyhow = { version = "1.0.65", optional = true }
Expand Down
1 change: 1 addition & 0 deletions libcnb/LICENSE
4 changes: 2 additions & 2 deletions libherokubuildpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description = "Opinionated common code for buildpacks implemented with libcnb.rs
keywords = ["buildpacks", "CNB"]
repository = "https://github.com/heroku/libcnb.rs/tree/main/libherokubuildpack"
documentation = "https://docs.rs/libherokubuildpack"
readme = "./README.md"
include = ["src/**/*", "../LICENSE", "../README.md"]
readme = "README.md"
include = ["src/**/*", "LICENSE", "README.md"]

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 1 addition & 0 deletions libherokubuildpack/LICENSE

0 comments on commit 3e7fb83

Please sign in to comment.