From b9e6f8ce6df6638766df0642140561060190df7c Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Mon, 7 Jun 2021 10:51:49 -0700 Subject: [PATCH] 1.4.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59004ee..17eaf32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # `cargo-aur` Changelog +## 1.4.0 (2021-06-07) + +#### Added + +- The `conflicts` field is now added to the `PKGBUILD`. +- Progress messages in the terminal. +- `LICENSE` detection and installation. If your Rust crate has a license not + found in `/usr/share/licenses/common/` (like `MIT`), then `cargo aur` will + copy it into the source tarball and have the PKGBUILD install it. Naturally + this means you must actually have a `LICENSE` file in your project, or `cargo aur` will complain. + ## 1.3.0 (2021-04-05) #### Changed diff --git a/Cargo.toml b/Cargo.toml index df94105..e455525 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-aur" -version = "1.3.0" +version = "1.4.0" authors = ["Colin Woodbury "] edition = "2018" description = "Prepare Rust projects to be released on the Arch Linux User Repository."