release: 1.6.0

This commit is contained in:
Colin Woodbury
2023-10-02 17:04:53 +09:00
parent 00c323a77d
commit c4aa908438
2 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# `cargo-aur` Changelog
## Unreleased
## 1.6.0 (2023-10-02)
#### Changed
@@ -9,6 +9,7 @@
but you will be warned. This fixes a conflict with other `cargo` subcommands.
- The PKGBUILD and tarball are now output to `target/cargo-aur` to avoid
cluttering the top-level of the repo.
- Reduced binary size.
#### Fixed

View File

@@ -1,6 +1,6 @@
[package]
name = "cargo-aur"
version = "1.5.0"
version = "1.6.0"
authors = ["Colin Woodbury <colin@fosskers.ca>"]
edition = "2021"
description = "Prepare Rust projects to be released on the Arch Linux User Repository."
@@ -21,3 +21,6 @@ toml = "0.8"
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1
panic = "abort"