Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: include license text in crate artefact #87

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Unreleased

## Fixed

- Ensure license text is included in crate archive - thanks [@decathorpe](https://github.com/decathorpe) for reporting this ([#87](https://github.com/colin-kiegel/rust-pretty-assertions/pull/87), [@tommilligan](https://github.com/tommilligan))

# v1.0.0

## Removed
Expand Down
2 changes: 1 addition & 1 deletion pretty_assertions/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ description = "Overwrite `assert_eq!` and `assert_ne!` with drop-in replacements
repository = "https://github.com/colin-kiegel/rust-pretty-assertions"
documentation = "https://docs.rs/pretty_assertions"

license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
categories = ["development-tools"]
keywords = ["assert", "diff", "pretty", "color"]
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions pretty_assertions/LICENSE-APACHE
1 change: 1 addition & 0 deletions pretty_assertions/LICENSE-MIT
1 change: 1 addition & 0 deletions pretty_assertions_bench/Cargo.toml
Expand Up @@ -3,6 +3,7 @@ name = "pretty_assertions_bench"
version = "0.1.0"
authors = ["Tom Milligan <code@tommilligan.net>"]
edition = "2018"
publish = false

[dependencies]
criterion = { version = "0.3.5", features = ["html_reports"] }
Expand Down
3 changes: 2 additions & 1 deletion scripts/check
Expand Up @@ -10,7 +10,8 @@ eprintln "Formatting sources"
cargo fmt -- --check

eprintln "Auditing dependencies"
cargo audit --deny warnings
cargo audit --deny warnings \
--ignore RUSTSEC-2021-0127 # unmaintained serde_cbor

eprintln "Linting sources"
cargo clippy --all-targets -- -D warnings
Expand Down