Skip to content

Commit

Permalink
Merge pull request #87 from tommilligan/redistribute-license
Browse files Browse the repository at this point in the history
chore: include license text in crate artefact
  • Loading branch information
tommilligan committed Dec 17, 2021
2 parents d063c77 + 092702f commit 88cd1be
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
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

0 comments on commit 88cd1be

Please sign in to comment.